-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (59 loc) · 1.36 KB
/
pyproject.toml
File metadata and controls
65 lines (59 loc) · 1.36 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
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "modelseed-api"
version = "0.1.0"
description = "Modern REST API backend for the ModelSEED metabolic modeling platform"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.11"
authors = [
{name = "Jose P. Faria"},
{name = "Christopher Henry", email = "chenry@anl.gov"},
]
dependencies = [
"fastapi>=0.110.0",
"uvicorn[standard]>=0.27.0",
"pydantic>=2.0.0",
"pydantic-settings>=2.0.0",
"requests>=2.25.0",
"python-multipart>=0.0.6",
]
[project.optional-dependencies]
modeling = [
"kbutillib",
"modelseedpy>=0.4.0",
"cobra>=0.29.0",
"cobrakbase",
"pymysql>=1.1.0",
]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"httpx>=0.25.0",
"pytest-cov>=4.0.0",
"ruff>=0.4.0",
]
celery = [
"celery[redis]>=5.3.0",
]
mcp = [
"fastmcp>=2.0.0",
]
[project.scripts]
modelseed-mcp = "modelseed_mcp.server:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.ruff]
target-version = "py311"
line-length = 100
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"
markers = [
"unit: Pure function tests, no I/O",
"integration: Tests with filesystem or temp dirs",
"e2e: Full stack end-to-end tests",
"live: Requires external services (PATRIC token)",
]