-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
72 lines (70 loc) · 2.35 KB
/
setup.py
File metadata and controls
72 lines (70 loc) · 2.35 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
from setuptools import setup, find_packages
# Read long description from README
try:
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
except FileNotFoundError:
long_description = "Scalable and universal prediction of cellular phenotypes"
setup(
name="prophet",
version="0.1.0",
url="https://github.com/theislab/prophet",
license="CC-BY-NC 4.0",
description="Scalable and universal prediction of cellular phenotypes",
long_description=long_description,
long_description_content_type="text/markdown",
author="Alejandro Tejada-Lapuerta, Yuge Ji",
author_email="alejandro.tejada@helmholtz-munich.de, yuge.ji@helmholtz-munich.de",
packages=find_packages(),
python_requires=">=3.10",
# All dependencies included - no extras needed
install_requires=[
# Core scientific computing
"numpy>=2.0.0,<3.0.0",
"pandas>=2.0.0,<3.0.0",
"scikit-learn>=1.3.0,<2.0.0",
"scipy>=1.10.0,<2.0.0",
"tqdm>=4.60.0",
"PyYAML>=6.0.0",
"joblib>=1.3.0",
# Deep learning framework
"torch>=2.0.0,<3.0.0",
"pytorch_lightning>=2.0.0,<3.0.0",
"torchmetrics>=1.0.0,<2.0.0",
# Visualization and notebooks
"matplotlib>=3.5.0",
"seaborn>=0.12.0",
"plotly>=5.0.0",
"jupyterlab>=4.0.0",
# Experiment tracking
"wandb>=0.15.0",
"tensorboard>=2.10.0",
# Model downloading and sharing
"huggingface_hub>=0.15.0",
],
# Package metadata
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
# Keywords for package discovery
keywords=[
"machine learning",
"biology",
"drug discovery",
"cell biology",
"perturbations",
"transformer",
"predictions",
],
# Include package data
include_package_data=True,
)