-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
53 lines (46 loc) · 1.26 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
from setuptools import setup, find_packages
# Load text for description
with open('README.md') as f:
readme = f.read()
# Go!
setup(
# Module name
name='chi-drm',
version='1.0.1',
description='Package to model dose response dynamics',
long_description=readme,
long_description_content_type="text/markdown",
url="https://chi.readthedocs.io",
# License name
license='BSD 3-clause license',
# Maintainer information
maintainer='David Augustin',
maintainer_email='[email protected]',
# Packages and data to include
packages=find_packages(
include=('chi', 'chi.*'),
exclude=('chi/tests',)),
include_package_data=True,
# List of dependencies
install_requires=[
'arviz>=0.11',
'myokit>=1.34',
'numpy>=1.17',
'pandas>=0.24',
'pints>=0.4',
'plotly>=4.8.1',
'scipy<=1.12', # 07/2024 - ArviZ seems to not yet keep up with SciPy
'tqdm>=4.46.1',
'xarray>=0.19',
],
extras_require={
'docs': [
'sphinx-rtd-theme>=1.3',
'sphinx>=1.5, !=1.7.3', # For doc generation
'sphinx-copybutton>=0.5.2'
],
'notebooks': [
'jupyter==1.0.0',
]
},
)