-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
75 lines (67 loc) · 2.11 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# Copyright (C) 2020 Krishnaswamy Lab, Yale University
import os
from setuptools import setup, find_packages
install_requires = [
"numpy>=1.14.0",
"scipy>=1.1.0",
"graphtools>=1.5.0",
"pandas>=0.25",
"scprep>=1.0",
"pygsp",
"scikit-learn",
]
test_requires = [
"nose",
"nose2",
"coverage",
"coveralls",
"scikit-learn",
"packaging",
"matplotlib",
"parameterized",
"phate",
]
doc_requires = [
"sphinx",
"sphinxcontrib-napoleon",
"autodocsumm",
]
version_py = os.path.join(os.path.dirname(__file__), "meld", "version.py")
version = open(version_py).read().strip().split("=")[-1].replace('"', "").strip()
readme = open("README.md").read()
setup(
name="meld",
version=version,
description="MELD",
author="Daniel Burkhardt, Krishnaswamy Lab, Yale University",
author_email="daniel.burkhardt@yale.edu",
packages=find_packages(),
license="Dual License - See LICENSE file",
python_requires=">=3.5",
install_requires=install_requires,
extras_require={"test": test_requires, "doc": doc_requires},
test_suite="nose2.collector.collector",
long_description=readme,
long_description_content_type="text/markdown",
url="https://github.com/KrishnaswamyLab/MELD",
download_url="https://github.com/KrishnaswamyLab/MELD/archive/v{}.tar.gz".format(
version
),
keywords=["big-data", "manifold-learning", "computational-biology"],
classifiers=[
"Development Status :: 5 - Production/Stable",
"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",
"Programming Language :: Python :: 3.8",
"Topic :: Scientific/Engineering :: Bio-Informatics",
],
)
# get location of setup.py
setup_dir = os.path.dirname(os.path.realpath(__file__))