-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
58 lines (53 loc) · 1.81 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
54
55
56
57
58
import os
import sys
from setuptools import setup, find_packages
install_requires = [
'numpy>=1.10.0',
'scipy>=0.18.0',
'pandas>=0.25',
'scprep',
'tasklogger',
'graphtools',
'phate',
'matplotlib>=3.0',
'ipywidgets',
'plotly==3.10.0',
'graph_coarsening @ git+https://github.com/loukasa/graph-coarsening',
]
package_name = "h_phate"
version_py = os.path.join(os.path.dirname(
__file__), package_name, 'version.py')
version = open(version_py).read().strip().split(
'=')[-1].replace('"', '').strip()
readme = open('README.md').read()
setup(name=package_name,
version=version,
description=package_name,
author='Scott Gigante, Krishnaswamy Lab, Yale University',
author_email='[email protected]',
packages=find_packages(),
license='GNU General Public License Version 2',
install_requires=install_requires,
long_description=readme,
url='https://github.com/KrishnaswamyLab/h_phate_demo',
download_url="https://github.com/KrishnaswamyLab/h_phate_demo/archive/v{}.tar.gz".format(
version),
keywords=['big-data',
'dimensionality-reduction',
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Framework :: Jupyter',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Natural Language :: English',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering :: Visualization',
]
)