-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (37 loc) · 1.33 KB
/
pyproject.toml
File metadata and controls
44 lines (37 loc) · 1.33 KB
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
[build-system]
requires = ["setuptools>=61.0", "setuptools-scm", "wheel", "setuptools-git-versioning"]
build-backend = "setuptools.build_meta"
[project]
requires-python = ">=3.10"
name = "pirogue"
authors = [
{name = "Denis Rouzaud", email = "info@opengis.ch"},
]
description = "pirogue let you dynamically and easily create views in PostgreSQL for inheritance or join scenarios."
keywords = ["postgres"]
classifiers = [
'Topic :: Database',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Intended Audience :: System Administrators',
'Intended Audience :: Information Technology',
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
]
license = { text = "MIT License" }
dynamic = ["version", "readme", "dependencies", "optional-dependencies"]
[project.urls]
homepage = "https://opengisch.github.io/pirogue/"
repository = "https://github.com/opengisch/pirogue"
tracker = "https://github.com/opengisch/pirogue/issues"
[project.scripts]
pirogue = "pirogue.cli:main"
[tool.setuptools-git-versioning]
enabled = true
[tool.setuptools.dynamic]
readme = {file = ["README.md"], content-type = "text/markdown"}
dependencies = {file = ["requirements.txt"]}
optional-dependencies.test = {file = ["requirements-test.txt"]}
[tool.isort]
profile = "black"
[tool.black]
line-length = 120