-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.cfg
49 lines (45 loc) · 1.39 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
[metadata]
name = snowfake
version = attr: snowfake.__version__
author = Matt Hall
author_email = [email protected]
description = Simulate snowflakes with Gravner-Griffeath algorithm.
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/agilescientific/snowfake
classifiers =
Intended Audience :: Science/Research
Development Status :: 3 - Alpha
Natural Language :: English
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
License :: OSI Approved :: Apache Software License
Operating System :: OS Independent
[options]
packages = snowfake
python_requires = >=3.6
install_requires =
numpy
matplotlib
scipy
tqdm
[options.extras_require]
skimage = scikit-image
test = pytest; pytest-cov; scikit-image
docs = sphinx; sphinxcontrib-apidoc; furo; myst_parser
dev = pytest; pytest-cov; scikit-image; sphinx; sphinxcontrib-apidoc; furo; myst_parser
[tool:pytest]
# pytest configuration: http://doc.pytest.org/en/latest/customize.html
addopts =
--ignore=docs
--cov=snowfake
filterwarnings =
ignore::DeprecationWarning:skimage.*
[coverage:run]
# coverage configuration: https://coverage.readthedocs.io/
omit =
snowfake/__init__.py
snowfake/_version.py