-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.cfg
110 lines (100 loc) · 2.52 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
[metadata]
author = Ashwin Vishnu Mohanan
author_email = [email protected]
url = https://github.com/snek5000/snek5000
name = snek5000
description = Python framework for Nek5000
long_description = file: README.md
long_description_content_type = text/markdown
license = BSD-3-Clause
license_files = LICENSE
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Science/Research
License :: OSI Approved :: BSD License
Natural Language :: English
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Topic :: Scientific/Engineering
project-urls =
Bug Tracker = https://github.com/snek5000/snek5000/issues
Documentation = https://snek5000.readthedocs.io
Changelog = https://snek5000.readthedocs.io/en/latest/CHANGELOG.html
[options]
python_requires = >= 3.8
package_dir=
=src
packages=find:
install_requires =
snakemake >= 7.15.2
fluiddyn >= 0.4.0
fluidsim-core >= 0.7.2
pymech >= 1.5.0
pandas
jinja2
inflection
pyyaml
filelock
[options.entry_points]
snek5000.solvers =
nek = snek5000.solvers.base
kth = snek5000.solvers.kth
console_scripts =
snek-generate-config = snek5000.config:ensure_config_file
snek-info = snek5000.util.console:print_versions
snek-ipy-load = snek5000.util.console:start_ipython_load_sim
snek-make = snek5000.make:snek_make
snek-restart = snek5000.util.restart:main
[options.extras_require]
docs =
sphinx
myst-parser
myst-nb
docutils <0.18, >=0.14 # sphinx, myst-parser and myst-nb is incompatible with docutils==0.18
sphinx-autobuild
sphinx-copybutton
sphinx-inline-tabs
furo
breathe
setuptools_scm
nbdime
# https://github.com/sphinx-doc/sphinx/issues/8198
pygments >= 2.4.1
linkify-it-py
scipy
snek5000-tgv
snek5000-phill
snek5000-cbox
tests =
nox
pytest
coverage[toml]
pytest-cov
pytest-datadir
pytest-mock
ipython
hpc =
%(tests)s
click
dev =
%(docs)s
%(hpc)s
rich
pdbpp
python-lsp-server
fortran-language-server
pre-commit>=2.9.0
twine
build
[options.packages.find]
where=src
[options.package_data]
snek5000 = resources/*.smk, resources/*.yml, resources/*.j2, assets/*
[flake8]
ignore = E203,E501,W503,W505
max-line-length = 82
## Not possible because we have a git dependency in tests
# [bdist_wheel]
# universal = 1