-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
46 lines (41 loc) · 1.19 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
import os
import sys
import shutil
from setuptools import setup
if sys.version_info.major != 3:
raise RuntimeError("TreeAlign requires Python 3")
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="treealign",
version="1.0",
description=(
"TreeAlign algorithm for scDNA & scRNA integration"
),
long_description=long_description,
long_description_content_type="text/markdown",
author="Hongyu Shi",
author_email="[email protected]",
package_dir={"": "src"},
packages=["treealign"],
install_requires=[
"numpy>=1.12.0",
"pandas>=0.19.2",
"scipy>=0.18.1",
"torch>=1.7.1",
"pyro-ppl>=1.5.1",
"biopython>=1.79",
"simplejson"
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Operating System :: POSIX :: Linux",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Visualization",
],
python_requires=">=3.6",
)
# get location of setup.py
setup_dir = os.path.dirname(os.path.realpath(__file__))