forked from dmentipl/plonk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
86 lines (80 loc) · 1.71 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
[metadata]
name = plonk
version = attr: plonk.__version__
author = Daniel Mentiplay
author_email = [email protected]
license = MIT
url = https://github.com/dmentipl/plonk
description = Smoothed particle hydrodynamics analysis and visualization with Python.
long_description = file: README.md
long_description_content_type = text/markdown
classifiers =
Development Status :: 5 - Production/Stable
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Operating System :: OS Independent
Topic :: Scientific/Engineering :: Astronomy
Topic :: Scientific/Engineering :: Visualization
[options]
package_dir =
= src
packages = find:
install_requires =
h5py
matplotlib
numba
numpy
pandas
pint>=0.10.1
scipy
toml
include_package_data = True
[options.packages.find]
where = src
[options.extras_require]
dev =
black
coverage[toml]
coveralls
doc8
flake8
ipython
isort>=5.0
jupyterlab
mypy
myst-parser
pip
pydata-sphinx-theme
pydocstyle
pylint
pytest
sphinx
types-toml
twine
full =
phantomconfig
scikit-image>=0.16
tqdm
[flake8]
max-line-length = 88
select = C,E,F,W
ignore = E203,E501,W503
max-complexity = 10
exclude =
.git,
__pycache__,
docs/source/conf.py,
build,
dist
[mypy]
ignore_missing_imports = True
[pydocstyle]
inherit = false
ignore = D107,D203,D212,D213,D402,D413,D415,D416,D417
match = (?!test_|__init__).*\.py
match_dir = [^build].*
ignore_decorators = is_documented_by