-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (29 loc) · 978 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
from setuptools import setup
setup(
name='dynamic_spharm', # This is the name of your PyPI-package.
version='1.0', # python versioneer
url="https://github.com/applied-systems-biology/Dynamic_SPHARM/",
author="Anna Medyukhina",
author_email='[email protected]',
packages=['SPHARM', 'SPHARM.classes', 'SPHARM.lib'],
package_data={'': ['tests/data/*', 'tests/data/surfaces/*', 'tests/data/synthetic_cells/*',
'tests/data/track_files/LN/*',
'tests/data/vrml/*', 'tests/data/wrl/LN/*']},
include_package_data=True,
license='BSD-3-Clause',
install_requires=[
'scikit-image',
'pandas',
'numpy',
'seaborn',
'scipy',
'ddt',
'pyshtools',
'mayavi',
'helper_lib',
'vtk'
],
dependency_links=[
"https://github.com/applied-systems-biology/HelperLib/releases/",
],
)