-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (37 loc) · 972 Bytes
/
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
from setuptools import setup
setup(
name="geneformer",
version="0.1.0",
author="Christina Theodoris",
author_email="[email protected]",
description="Geneformer is a transformer model pretrained \
on a large-scale corpus of ~30 million single \
cell transcriptomes to enable context-aware \
predictions in settings with limited data in \
network biology.",
packages=["geneformer"],
python_requires=">=3.10",
include_package_data=True,
install_requires=[
"anndata",
"datasets",
"loompy",
"matplotlib",
"numpy",
"packaging",
"pandas",
"pyarrow",
"pytz",
"ray",
"scanpy",
"scikit-learn",
"scipy",
"seaborn",
"setuptools",
"statsmodels",
"tdigest",
"torch",
"tqdm",
"transformers",
],
)