-
-
Notifications
You must be signed in to change notification settings - Fork 227
/
pyproject.toml
102 lines (92 loc) · 2.19 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "umap-project"
dynamic = ["version"]
description = "Create maps with OpenStreetMap layers in a minute and embed them in your site."
readme = "README.md"
authors = [
{ name = "Yohan Boniface", email = "yb@enix.org" },
]
maintainers = [
{ name = "David Larlet", email = "david@larlet.fr" },
]
homepage = "https://github.com/umap-project/umap"
keywords = ["django", "leaflet", "geodjango", "openstreetmap", "map"]
requires-python = ">=3.10"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"Django==5.1.3",
"django-agnocomplete==2.2.0",
"django-environ==0.11.2",
"django-probes==1.7.0",
"Pillow==11.0.0",
"psycopg==3.2.3",
"requests==2.32.3",
"rcssmin==1.2.0",
"rjsmin==1.2.3",
"social-auth-core==4.5.4",
"social-auth-app-django==5.4.2",
]
[project.optional-dependencies]
dev = [
"hatch==1.13.0",
"ruff==0.7.4",
"djlint==1.36.1",
"mkdocs==1.6.1",
"mkdocs-material==9.5.44",
"mkdocs-static-i18n==1.2.3",
"vermin==1.6.0",
"pymdown-extensions==10.12",
"isort==5.13.2",
]
test = [
"factory-boy==3.3.1",
"playwright>=1.39",
"pytest==8.3.3",
"pytest-django==4.9.0",
"pytest-playwright==0.5.2",
"pytest-rerunfailures==14.0",
"pytest-xdist>=3.5.0,<4",
]
docker = [
"uwsgi==2.0.28",
]
sync = [
"channels==4.2.0",
"daphne==4.1.2",
"pydantic==2.9.2",
"websockets==13.1",
]
[project.scripts]
umap = "umap.bin:main"
[tool.hatch.build.targets.sdist]
include = [
"/umap",
]
[tool.hatch.build.targets.wheel]
packages = ["umap"]
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.version]
path = "umap/__init__.py"
[tool.flake8]
# Black crazyness.
max-line-length = 88
[tool.djlint]
profile="django"
indent=2
format_css=true
blank_line_after_tag="load,extends"
line_break_after_multiline_tag=true