File size: 1,063 Bytes
3b78204 b73028f 2f25aea b73028f a34fbc2 b73028f 3b78204 10d3f10 b73028f 10d3f10 b73028f 10d3f10 b73028f a34fbc2 10d3f10 a34fbc2 10d3f10 624349c 94d98d1 10d3f10 b73028f |
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 |
from setuptools import setup, find_packages
setup(
name="geneformer",
version="0.1.0",
author="Christina Theodoris",
author_email="christina.theodoris@gladstone.ucsf.edu",
description="Geneformer is a transformer model pretrained \
on a large-scale corpus of single \
cell transcriptomes to enable context-aware \
predictions in settings with limited data in \
network biology.",
packages=find_packages(),
python_requires=">=3.10",
include_package_data=True,
install_requires=[
"anndata",
"datasets",
"loompy",
"matplotlib",
"numpy",
"optuna",
"optuna-integration",
"packaging",
"pandas",
"peft",
"pyarrow",
"pytz",
"ray",
"scanpy",
"scikit-learn",
"scipy",
"seaborn",
"setuptools",
"statsmodels",
"tdigest",
"tensorboard",
"torch",
"tqdm",
"transformers",
],
)
|