-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
55 lines (48 loc) · 1.5 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
[build-system]
requires = ["setuptools>=61.0", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "ogc_na"
authors = [
{ name="Rob Atkinson", email="[email protected]" },
{ name="Piotr Zaborowski", email="[email protected]" },
{ name="Alejandro Villar", email="[email protected]" },
]
description = "OGC Naming Authority tools"
readme = "README.md"
requires-python = ">=3.7"
dynamic = ["dependencies", "version"]
keywords = ["ogc", "ogc-na", "naming authority", "ogc rainbow", "definitions server"]
classifiers = [
"Development Status :: 4 - Beta",
"Topic :: Scientific/Engineering",
"Topic :: Utilities",
"Topic :: Software Development :: Libraries",
]
[project.urls]
"Homepage" = "https://github.com/opengeospatial/ogc-na-tools/"
"Documentation" = "https://opengeospatial.github.io/ogc-na-tools/"
"Repository" = "https://github.com/opengeospatial/ogc-na-tools.git"
[tool.setuptools]
include-package-data = false
[tool.setuptools.packages.find]
include = ["ogc*"]
exclude = ["docs", "test"]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[tool.setuptools_scm]
write_to = "ogc/na/_version.py"
[project.optional-dependencies]
dev = [
"mkdocs>=1.4.2",
"mkdocs-autorefs",
"mkdocs-gen-files",
"mkdocs-literate-nav",
"mkdocs-material",
"mkdocs-material-extensions",
"mkdocs-pymdownx-material-extras",
"mkdocs-section-index",
"mkdocstrings",
"mkdocstrings-python",
"mkdocs-markdownextradata-plugin"
]