-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
78 lines (76 loc) · 2.16 KB
/
setup.py
File metadata and controls
78 lines (76 loc) · 2.16 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
73
74
75
76
77
78
#!/usr/bin/env python3
"""
Setup script for PathwayLens 1.0
"""
from setuptools import setup, find_packages
setup(
name="pathwaylens",
version="1.0.0",
description="Next-generation computational biology platform for multi-omics pathway analysis",
author="PathwayLens Team",
author_email="pathwaylens@example.com",
packages=find_packages(),
python_requires=">=3.8",
install_requires=[
"typer>=0.9.0",
"rich>=13.0.0",
"click>=8.0.0",
"pandas>=2.0.0",
"numpy>=1.24.0",
"scipy>=1.10.0",
"matplotlib>=3.7.0",
"seaborn>=0.12.0",
"plotly>=5.15.0",
"requests>=2.31.0",
"aiohttp>=3.8.0",
"fastapi>=0.100.0",
"uvicorn>=0.23.0",
"pydantic>=2.0.0",
"pyyaml>=6.0",
"loguru>=0.7.0",
"biopython>=1.79",
"mygene>=3.2.2",
"openpyxl>=3.1.0",
"xlrd>=2.0.0",
"celery>=5.3.0",
"redis>=4.6.0",
"sqlalchemy>=2.0.0",
"alembic>=1.12.0",
"psycopg2-binary>=2.9.0",
"python-multipart>=0.0.6",
"python-jose>=3.3.0",
"passlib>=1.7.4",
"bcrypt>=4.0.0",
"httpx>=0.24.0",
"tenacity>=8.2.0",
"cachetools>=5.3.0",
"h5py>=3.9.0",
"zarr>=2.16.0",
"networkx>=3.1.0",
"scikit-learn>=1.3.0",
"statsmodels>=0.14.0",
"gseapy>=1.0.0",
"enrichr>=3.2.0",
"gprofiler-official>=1.0.0",
"pyensembl>=2.2.0",
"pybiomart>=0.2.0",
"bioservices>=1.11.0",
"goatools>=1.3.0",
],
entry_points={
'console_scripts': [
'pathwaylens=pathwaylens_cli.main:cli_entry',
],
},
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
)