-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
44 lines (37 loc) · 1.1 KB
/
setup.py
File metadata and controls
44 lines (37 loc) · 1.1 KB
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
from setuptools import setup, find_packages, Command
# Load text for description and license
with open('README.md') as f:
readme = f.read()
# Go!
setup(
# Module name (lowercase)
name='PKPD',
version='0.0.2dev0',
# Description
description='Pharmacokinetics and pharmacodynamics modelling interface.',
long_description=readme,
# License name
license='BSD 3-clause license',
# Maintainer information
maintainer='David Augustin, Rebecca Rumney, Barnum Swannell, Simon Marchant',
maintainer_email='david.augustin@dtc.ox.ac.uk',
url='https://github.com/SABS-R3-projects/PKPD.git',
# Packages to include
packages=find_packages(include=('PKPD','PKPD.*')),
# List of dependencies
install_requires=[
'cma>=2',
'numpy>=1.8',
'scipy>=0.14',
'pyqt5==5.9',
'sympy',
'matplotlib>=1.5',
'myokit>=1.29',
'tabulate',
'pandas',
'pints @ git+git://github.com/pints-team/pints.git#egg=pints'
],
dependency_links=[
"git+git://github.com/pints-team/pints.git#egg=pints-0.2.2",
]
)