-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (31 loc) · 915 Bytes
/
setup.py
File metadata and controls
32 lines (31 loc) · 915 Bytes
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
from setuptools import setup, find_packages
setup(
name="circuit-structure",
version="0.1.0",
description=(
"Beyond pairwise edges: cell-state conditionality, temporal "
"directionality, and higher-order circuit structure in "
"foundation-model gene regulatory networks"
),
author="Ihor Kendiukhov",
author_email="kenduhov.ig@gmail.com",
url="https://github.com/Biodyn-AI/circuit-structure",
license="MIT",
packages=find_packages(where="src"),
package_dir={"": "src"},
python_requires=">=3.9",
install_requires=[
"numpy>=1.23.0",
"pandas>=1.5.0",
"scipy>=1.9.0",
"scikit-learn>=1.1.0",
"scanpy>=1.9.0",
"anndata>=0.8.0",
"networkx>=2.8.0",
"igraph>=0.10.0",
"matplotlib>=3.6.0",
"seaborn>=0.12.0",
"statsmodels>=0.13.0",
"tqdm>=4.64.0",
],
)