forked from DavAug/chi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
41 lines (36 loc) · 1003 Bytes
/
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
from setuptools import setup, find_packages
# Go!
setup(
# Module name
name='erlotinib',
version='0.0.1dev0',
# 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=('erlotinib', 'erlotinib.*')),
include_package_data=True,
# List of dependencies
install_requires=[
'dash>=1.17.0',
'dash-bootstrap-components>=0.10',
'jupyter==1.0.0',
'myokit>=1.31',
'numpy>=1.8',
'pandas>=0.24',
'pints @ git+git://github.com/pints-team/pints.git#egg=pints',
'plotly==4.8.1',
'tqdm==4.46.1'
],
dependency_links=[
"git+git://github.com/pints-team/pints.git#egg=pints-latest",
],
extras_require={
'docs': [
'furo',
'sphinx>=1.5, !=1.7.3', # For doc generation
],
},
)