2023-06-09 09:27:19 -05:00
|
|
|
[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.8"
|
|
|
|
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.4",
|
|
|
|
"Programming Language :: Python :: 3.5",
|
|
|
|
"Programming Language :: Python :: 3.6",
|
|
|
|
"Programming Language :: Python :: 3.7",
|
|
|
|
"Programming Language :: Python :: 3.8",
|
|
|
|
"Programming Language :: Python :: 3.9",
|
|
|
|
"Programming Language :: Python :: 3.10",
|
|
|
|
]
|
|
|
|
dependencies = [
|
|
|
|
"Django>=4.1",
|
|
|
|
"django-agnocomplete==2.2.0",
|
|
|
|
"django-compressor==4.3.1",
|
|
|
|
"django-environ==0.10.0",
|
|
|
|
"Pillow==9.5.0",
|
|
|
|
"psycopg2==2.9.6",
|
2023-08-22 08:48:45 -05:00
|
|
|
"requests==2.31.0",
|
2023-06-09 09:27:19 -05:00
|
|
|
"social-auth-core==4.4.2",
|
|
|
|
"social-auth-app-django==5.2.0",
|
|
|
|
]
|
|
|
|
|
|
|
|
[project.optional-dependencies]
|
|
|
|
dev = [
|
|
|
|
"hatch==1.7.0",
|
2023-07-03 15:17:57 -05:00
|
|
|
"black==23.3.0",
|
2023-06-20 08:40:32 -05:00
|
|
|
"djlint==1.31.0",
|
2023-08-07 01:35:57 -05:00
|
|
|
"mkdocs==1.5.2",
|
2023-06-09 09:27:19 -05:00
|
|
|
]
|
|
|
|
test = [
|
|
|
|
"factory-boy==3.2.1",
|
2023-09-04 08:01:15 -05:00
|
|
|
"playwright==1.37.0",
|
2023-06-09 09:27:19 -05:00
|
|
|
"pytest==6.2.5",
|
|
|
|
"pytest-django==4.5.2",
|
2023-09-04 08:01:15 -05:00
|
|
|
"pytest-playwright==0.4.2",
|
2023-04-27 19:33:41 -05:00
|
|
|
|
2023-06-09 09:27:19 -05:00
|
|
|
]
|
|
|
|
docker = [
|
|
|
|
"uwsgi==2.0.21",
|
|
|
|
]
|
|
|
|
|
2023-07-01 10:44:24 -05:00
|
|
|
[tool.hatch.build]
|
|
|
|
artifacts = [
|
|
|
|
# Required because part of .gitignore (and thus excluded by hatch).
|
|
|
|
"/umap/static/umap/vendors",
|
|
|
|
]
|
|
|
|
|
2023-06-17 08:36:50 -05:00
|
|
|
[tool.hatch.build.targets.sdist]
|
|
|
|
include = [
|
|
|
|
"/umap",
|
|
|
|
]
|
|
|
|
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
|
|
packages = ["umap"]
|
|
|
|
|
2023-06-09 09:27:19 -05:00
|
|
|
[project.scripts]
|
|
|
|
umap = "umap.bin:main"
|
|
|
|
|
|
|
|
[tool.hatch.version]
|
|
|
|
path = "umap/__init__.py"
|
|
|
|
|
|
|
|
[tool.flake8]
|
|
|
|
# Black crazyness.
|
|
|
|
max-line-length = 88
|
2023-06-20 08:40:32 -05:00
|
|
|
|
|
|
|
[tool.djlint]
|
|
|
|
profile="django"
|
|
|
|
indent=2
|
|
|
|
format_css=true
|