-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
64 lines (55 loc) · 1.68 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
#!/usr/bin/env python
"""The setup script."""
import pathlib
from setuptools import find_packages, setup
requirements = [
"pandas==1.4.1",
"numpy==1.20.3",
"tqdm==4.64.0",
"boto3==1.23.4",
"torch==1.11.0",
"pytorch_lightning==1.9.3",
"scanpy==1.9.1",
"anndata==0.8.0",
"pytorch_tabnet==3.1.1",
"torchmetrics==0.10.3",
"scikit-learn==1.0.2",
"scipy==1.8.0",
"wandb==0.12.16",
]
setup_requirements = requirements.copy()
test_requirements = []
# The directory containing this file
HERE = pathlib.Path(__file__).parent
# The text of the README file
README = (HERE / "README.md").read_text()
setup(
author="Julian Lehrer",
author_email="[email protected]",
python_requires=">=3.9",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
description="Scalable, Interpretable Deep Learning for Single-Cell RNA-seq Classification",
install_requires=requirements.copy(),
license="MIT license",
long_description=README,
long_description_content_type="text/markdown",
include_package_data=True,
keywords="scsims",
name="scsims",
packages=find_packages(exclude=["tests"]),
setup_requires=setup_requirements,
test_suite="tests",
tests_require=test_requirements,
url="https://github.com/jlehrer1/sims",
version="2.0.1",
zip_safe=False,
)