-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
69 lines (62 loc) · 1.7 KB
/
pyproject.toml
File metadata and controls
69 lines (62 loc) · 1.7 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
[project]
name = "mapserver"
version = "1.9.2"
description = "An server for anatomical flatmaps."
authors = [
{ name = "David Brooks", email = "d.brooks@auckland.ac.nz"}
]
readme = "README.rst"
requires-python = ">=3.12,<3.13"
dependencies = [
"landez>=2.5.0",
"Pillow>=11.2.0",
"requests>=2.31.0",
"rdflib>=7.0.0",
"setuptools>=78.1.0,<81",
"litestar>=2.15.2",
"uvloop>=0.21.0",
"structlog>=24.4.0",
"rich>=13.9.4",
"pyyaml>=6.0.2",
"asyncpg>=0.30.0",
"flatmapknowledge @ https://github.com/AnatomicMaps/flatmap-knowledge/releases/download/v2.8.3/flatmapknowledge-2.8.3-py3-none-any.whl",
"mapknowledge @ https://github.com/AnatomicMaps/map-knowledge/releases/download/v1.6.3/mapknowledge-1.6.3-py3-none-any.whl",
"mapmaker @ https://github.com/AnatomicMaps/flatmap-maker/releases/download/v1.23.2/mapmaker-1.23.2-py3-none-any.whl",
"granian[pname]>=2.5.5",
"semver>=3.0.4",
"anyio>=4.9.0",
"scipy>=1.16.2",
"igraph==0.11.9",
"numpy>=1.26.4",
]
[dependency-groups]
dev = [
"sphinx<=8.1",
"pytest>=8.4.0",
"uvicorn>=0.35.0",
"sphinxcontrib-openapi",
"furo>=2025.9.25",
]
tools = [
"rich-argparse>=1.7.1",
]
[project.scripts]
mapserver = 'mapserver.__main__:mapserver'
mapviewer = 'mapserver.__main__:mapviewer'
archiver = "tools.archiver:main"
promote = "tools.promote:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.metadata]
allow-direct-references = true
[tool.pyright]
pythonVersion = "3.12"
venvPath = "."
venv = ".venv"
[tool.uv.workspace]
members = [
"tools/competency-query",
]
[tool.uv.sources]
sphinxcontrib-openapi = { git = "https://github.com/sphinx-contrib/openapi" }