-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.cfg
87 lines (76 loc) · 1.8 KB
/
setup.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
[metadata]
author = Ashwin Vishnu Mohanan
author_email = [email protected]
url = https://github.com/exabl/snek5000
name = snek5000
description = Python framework for Nek5000
long_description = file: README.md
long_description_content_type = text/markdown
license = BSD-3-Clause
license_file = LICENSE
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Science/Research
License :: OSI Approved :: BSD License
Natural Language :: English
Programming Language :: Python :: 3 :: Only
Topic :: Scientific/Engineering
project-urls =
Bug Tracker = https://github.com/exabl/snek5000/issues
Documentation = https://snek5000.readthedocs.io
Changelog = https://snek5000.readthedocs.io/en/latest/CHANGELOG.html
[options]
python_requires = >= 3.6
package_dir=
=src
packages=find:
install_requires =
snakemake != 5.23.*, != 5.24.*
fluidsim-core
jinja2
inflection
importlib_resources; python_version < "3.7"
[options.entry_points]
snek5000.solvers =
nek = snek5000.solvers.base
kth = snek5000.solvers.kth
[options.extras_require]
docs =
sphinx
myst-parser
myst-nb
sphinx-copybutton
sphinx_rtd_theme
breathe
setuptools_scm
tests =
pytest
pytest-cov
ipython
hpc =
%(tests)s
click
dev =
%(docs)s
%(hpc)s
colorlog
pdbpp
rope
python-language-server
fortran-language-server
pre-commit
twine
readme-renderer[md]
[options.packages.find]
where=src
[options.package_data]
snek5000 = assets/*.smk, assets/*.yml, assets/*.j2
[flake8]
ignore = E501,W503,W505
max-line-length = 82
[isort]
known_first_party = fluiddyn, fluidsim, snek5000, abl
multi_line_output = 3
## Not possible because we have a git dependency in tests
# [bdist_wheel]
# universal = 1