ctheodoris
commited on
Commit
•
b73028f
1
Parent(s):
1163e5e
Add setup.py
Browse files
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="[email protected]",
|
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 |
+
)
|