-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpyproject.toml
52 lines (46 loc) · 1.06 KB
/
pyproject.toml
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "COMO"
dynamic = ["version"]
requires-python = ">=3.10,<3.13"
dependencies = [
"cobra>=0.28.0",
"fast-bioservices>=0.3.9",
"kaleido==0.2.1",
"loguru>=0.7.2",
"pandas>=1.3.5",
"plotly>=5.24.1",
"scanpy>=1.9.8",
"scipy>=1.7.3",
"scikit-learn>=1.5.2",
"setuptools<60.0",
"openpyxl>=3.1.5",
"aiofiles>=24.1.0",
"aioftp>=0.23.1",
"troppo@git+https://github.com/JoshLoecker/troppo@master",
"cobamp@git+https://github.com/JoshLoecker/cobamp@master",
]
[project.optional-dependencies]
gurobi = [ "gurobipy>=10.0.0" ]
interactive = [
"jupyterlab>=4.0.0",
"ipython>=7.0.0"
]
dev = [
"commitlint>=1.3.0",
"pytest-asyncio>=0.24.0",
"pytest>=8.0.0",
"ruff>=0.8.0",
"hypothesis>=6.122.1",
"pytest-cov>=6.0.0",
]
[tool.hatch.version]
path = "main/como/__init__.py"
[tool.hatch.build]
packages = ["main/como"]
[tool.hatch.metadata]
allow-direct-references = true
[tool.pytest.ini_options]
pythonpath = [ "main/src" ]