forked from DiODeProject/MuMoT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
66 lines (60 loc) · 1.79 KB
/
setup.py
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
import io
import os
from setuptools import find_packages, setup
with open("README.md", "r") as f:
long_description = f.read()
pkgname = 'mumot'
version_namespace = {}
here = os.path.abspath(os.path.dirname(__file__))
with io.open(os.path.join(here, pkgname, '_version.py'), encoding='utf8') as f:
exec(f.read(), {}, version_namespace)
setup(
name=pkgname,
description='Multiscale Modelling Tool',
version=version_namespace['__version__'],
author='James A. R. Marshall, Andreagiovanni Reina, Thomas Bose',
author_email='james.marshall@shef.ac.uk',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/DiODeProject/MuMoT',
packages=find_packages(),
package_dir={'': '.'},
license='GPL-3.0',
install_requires=[
'antlr4-python3-runtime',
'graphviz',
'ipykernel',
'ipython',
'ipywidgets',
'matplotlib',
'networkx',
'notebook',
'pydstool>=0.90.3', # min version that allows scipy >= 1.0.0 to be used
'pyzmq',
'scipy',
'sympy>=1.4',
'tornado'
],
extras_require={
'test': [
'pytest',
'pytest-cov',
'nbval',
'nbdime',
'jupyter',
],
'docs': [
'sphinx',
],
},
classifiers=[
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Physics",
],
)