-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
45 lines (41 loc) · 1.22 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 setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="prescient",
version="0.1.0",
author="Sachit Saksena; Grace Hui-Ting Yeo",
author_email="[email protected]",
license="MIT License",
description="Method for simulating single cells using longitudinal scRNA-seq.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/gifford-lab/prescient",
packages=setuptools.find_packages(),
classifiers=[
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3"
],
include_package_data=True,
install_requires=[
"scanpy>=1.7",
"pyreadr>=0.0",
"matplotlib>=3.3",
"annoy>=1.17.0",
"numpy>=1.14",
"pandas>=0.25",
"scikit-learn>=0.21",
"scipy>=1.3",
"setuptools>=41.6",
"torch>=1.5",
"torchvision>=0.7",
"geomloss==0.2.3",
"pykeops>=1.3"
],
python_requires=">=3.4",
entry_points={
"console_scripts": ["prescient=prescient.__main__:main"]
}
)