-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (47 loc) · 1.29 KB
/
pyproject.toml
File metadata and controls
56 lines (47 loc) · 1.29 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
[project]
name = "cell-explorer-api"
version = "0.1.0"
description = "FastAPI cell-explorer API and static file serving"
requires-python = ">=3.12"
dependencies = [
"fastapi>=0.134.0",
"uvicorn>=0.41.0",
"pydantic-settings>=2.8.1",
"pyjwt[crypto]>=2.9.0",
"httpx>=0.28.0",
"sqlmodel>=0.0.24",
"alembic>=1.15.0",
"aiosqlite>=0.21.0",
"greenlet>=3.4.0",
"typer>=0.15",
"cell-explorer-agent",
"zarr-access",
]
[tool.uv.sources]
cell-explorer-agent = { workspace = true }
zarr-access = { workspace = true }
[project.optional-dependencies]
test = [
"pytest>=9.0.2",
"pytest-asyncio>=0.25.0",
]
[project.scripts]
cell-explorer-chat = "cell_explorer_api.cli.main:app"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/cell_explorer_api"]
[tool.semantic_release]
commit_parser = "conventional-monorepo"
commit_message = """\
chore(release): cell-explorer-api@{version}
Automatically generated by python-semantic-release
"""
tag_format = "cell-explorer-api-v{version}"
version_toml = ["pyproject.toml:project.version"]
[tool.semantic_release.changelog.default_templates]
changelog_file = "CHANGELOG.md"
[tool.semantic_release.commit_parser_options]
path_filters = ["."]
scope_prefix = "api-"