ctheodoris commited on
Commit
b73028f
1 Parent(s): 1163e5e

Add setup.py

Browse files
Files changed (1) hide show
  1. setup.py +21 -0
setup.py ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from setuptools import setup
2
+
3
+ setup(
4
+ name="geneformer",
5
+ version="0.0.1",
6
+ author="Christina Theodoris",
7
+ author_email="christina.theodoris@gladstone.ucsf.edu",
8
+ description="Geneformer is a transformer model pretrained \
9
+ on a large-scale corpus of ~30 million single \
10
+ cell transcriptomes to enable context-aware \
11
+ predictions in settings with limited data in \
12
+ network biology.",
13
+ packages=["geneformer"],
14
+ include_package_data=True,
15
+ install_requires=[
16
+ "datasets",
17
+ "loompy",
18
+ "numpy",
19
+ "transformers",
20
+ ],
21
+ )