-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
48 lines (41 loc) · 1.37 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
[build-system]
requires = ["setuptools>=61.0", "setuptools-scm", "wheel", "setuptools-git-versioning"]
build-backend = "setuptools.build_meta"
[project]
requires-python = ">=3.9"
name = "pgserviceparser"
authors = [
{name = "David Signer", email = "info@opengis.ch"},
{name = "Julien Moura", email = "julien.moura@oslandia.com"},
{name = "Germán Carrillo", email = "info@opengis.ch"},
{name = "Denis Rouzaud", email = "info@opengis.ch"},
]
description = "A package parsing the PostgreSQL connection service file"
keywords = ["postgres", "service"]
classifiers = [
'Topic :: Database',
'Intended Audience :: System Administrators',
'Intended Audience :: Information Technology',
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
]
license = { text = "MIT License" }
dynamic = ["version", "readme"]
[project.optional-dependencies]
docs = [
"mkdocstrings[python]~=0.25",
"mkdocs-material>=9.5.17,<9.7.0",
"fancyboxmd~=1.1"
]
[project.urls]
homepage = "https://opengisch.github.io/pgserviceparser/"
repository = "https://github.com/opengisch/pgserviceparser"
tracker = "https://github.com/opengisch/pgserviceparser/issues"
[tool.setuptools-git-versioning]
enabled = true
[tool.setuptools.dynamic]
readme = {file = ["README.md"], content-type = "text/markdown"}
[tool.isort]
profile = "black"
[tool.black]
line-length = 120