-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
34 lines (33 loc) · 1.02 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
from setuptools import find_packages, setup
setup(
name='pySODM',
packages=find_packages("src", exclude=["*.tests"]),
package_dir={'': 'src'},
version='0.2.5',
description='Simulating and Optimising Dynamical Models',
author='Tijs Alleman (Ghent University, Johns Hopkins Bloomberg School of Public Health)',
author_email='[email protected], [email protected]',
keywords='ODE PDE simulation calibration gillespie xarray emcee',
url='https://github.com/twallema/pySODM',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
license='MIT',
install_requires=[
'scipy',
'numpy',
'pandas',
'matplotlib',
'xarray',
'emcee',
'h5py',
'tqdm'
],
extras_require={
"develop": ["pytest",
"sphinx",
"setuptools",
"numpydoc",
"sphinx_rtd_theme",
"myst_parser[sphinx]"],
}
)