-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
57 lines (51 loc) · 1.71 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
import os
from setuptools import setup, find_packages
install_requires = [
"graphtools>=1.5.0",
"tensorflow>=2.6.0",
"multiscale_phate==0.0",
"numpy>=1.14.0",
"scikit-learn",
"scipy>=1.1.0",
"tqdm",
"scanpy",
"phate"
]
test_requires = [
"numpy>=1.14.0",
"phate",
]
version_py = os.path.join(os.path.dirname(__file__), "gspa", "version.py")
version = open(version_py).read().strip().split("=")[-1].replace('"', "").strip()
readme = open("README.md").read()
setup(
name='gspa',
version=version,
description="Gene Signal Pattern Analysis",
author='Aarthi Venkat, Krishnaswamy Lab, Yale University',
author_email='[email protected]',
packages=find_packages(),
license="GNU General Public License Version 3",
install_requires=install_requires,
python_requires=">=3.6",
extras_require={"test": test_requires},
long_description=readme,
long_description_content_type="text/markdown",
url="https://github.com/KrishnaswamyLab/Gene-Signal-Pattern-Analysis",
download_url="https://github.com/KrishnaswamyLab/Gene-Signal-Pattern-Analysis/archive/v{}.tar.gz".format(version),
keywords=["big-data", "manifold-learning", "computational-biology", "dimensionality-reduction", "single-cell"],
classifiers=[
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Natural Language :: English',
'Development Status :: 5 - Production/Stable',
'Operating System :: OS Independent',
],
)
setup_dir = os.path.dirname(os.path.realpath(__file__))