-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
43 lines (36 loc) · 1.25 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
[build-system]
requires = ["setuptools>=45", "setuptools-git-versioning<2"]
build-backend = "setuptools.build_meta"
[project]
requires-python = ">=3.9"
name = "django-oapif"
authors = [
{name = "OPENGIS.ch", email = "[email protected]"},
]
description = "Easily expose your Django models through an OGCAPI-Features endpoint"
keywords = ["django", "ogc", "api", "wfs3", "features", "rest", "gis", "ogcapif", "oapif"]
classifiers = [
"Framework :: Django",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: GIS",
]
license = { text = "MIT License" }
dynamic = ["version", "readme", "dependencies", "optional-dependencies"]
[project.urls]
homepage = "https://github.com/opengisch/django-oapif"
repository = "https://github.com/opengisch/django-oapif"
tracker = "https://github.com/opengisch/django-oapif/issues"
[tool.setuptools]
packages = ["django_oapif"]
[tool.setuptools-git-versioning]
enabled = true
version_callback = "0.0.0.dev"
[tool.setuptools.dynamic]
readme = {file = ["README.md"], content-type = "text/markdown"}
dependencies = {file = ["requirements.txt"]}
optional-dependencies.dev = {file = ["requirements-dev.txt"]}
[tool.isort]
profile = "black"
[tool.black]
line-length = 120