forked from DiODeProject/MuMoT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
55 lines (53 loc) · 1.58 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
[metadata]
name = mumot
description = Multiscale Modelling Tool
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/DiODeProject/MuMoT
author = James A. R. Marshall, Andreagiovanni Reina, Thomas Bose
author_email = [email protected]
license = GPL-3.0
license_file = LICENSE
classifiers =
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Topic :: Scientific/Engineering
Topic :: Scientific/Engineering :: Chemistry
Topic :: Scientific/Engineering :: Mathematics
Topic :: Scientific/Engineering :: Physics
use_scm_version=True,
setup_requires=['setuptools_scm'],
[options]
zip_safe = False
include_package_data = True
packages = find:
install_requires =
antlr4-python3-runtime >=4.7,<4.8
graphviz
setuptools # used with Python <3.8 for finding pkg version at runtime (with 3.8 could use importlib.metadata)
ipykernel
ipython >=7.10.0 # minimum required to avoid creating duplicate Figures when changing ipywidget states
ipywidgets
matplotlib
networkx
notebook
pydstool >=0.90.3 # min version that allows scipy >= 1.0.0 to be used
pyzmq
scipy
sympy >=1.4,<1.5 # pinned to <1.5 due to Issue #377
tornado
setup_requres =
setuptools_scm
[options.extras_require]
test =
pytest
pytest-cov
nbval >=0.9.5
nbdime
jupyter
docs =
sphinx