-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
46 lines (37 loc) · 1.06 KB
/
Copy pathsetup.cfg
File metadata and controls
46 lines (37 loc) · 1.06 KB
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
# Look at https://setuptools.readthedocs.io/en/latest/references/keywords.html for keywords and their meaning
[metadata]
name = eikonal_solvers
# Extract version from __version__ defined in __init__.py file
version = attr:eikonal_solvers.__version__
description = Eikonal solvers
long_description = README.md
long_description_content_type = text/markdown
author = Silas Nyboe Ørting
author_email = silas@di.ku.dk
# Look at https://pypi.org/classifiers/
classifiers =
Development Status :: 4 - Beta
License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Programming Language :: Python :: 3
license = GNU General Public License v3 or later (GPLv3+)
license_files = LICENSE.txt
platforms = any
[options]
install_requires =
numpy
scipy
packages = find_namespace:
package_dir =
=src
[options.packages.find]
where = src
[options.extras_require]
# Extras can be installed with bracket notation, e.g. pip install ...[dev]
dev = pylint>=2.7.4
benchmarks = matplotlib
test =
matplotlib
scipy
tox
pytest
examples = matplotlib