-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (47 loc) · 1.33 KB
/
pyproject.toml
File metadata and controls
53 lines (47 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
45
46
47
48
49
50
51
52
53
# SPDX-FileCopyrightText: 2020-2023 Collabora, Ltd. and the Proclamation contributors
#
# SPDX-License-Identifier: Apache-2.0
[project]
authors = [
{name = "Rylie Pavlik", email = "[email protected]"},
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
]
dependencies = [
"click >=7,<9",
"jinja2 >=2,<3.1",
]
dynamic = ["version", "description"]
license = {text = "Apache-2.0 AND CC0-1.0"}
name = "proclamation"
readme = "README.md"
requires-python = ">=3.7"
[project.urls]
Documentation = "https://proclamation.readthedocs.io"
Home = "https://gitlab.com/proclamation/proclamation"
[project.scripts]
proclamation = "proclamation.main:cli"
[build-system]
build-backend = "flit_core.buildapi"
requires = ["flit_core >=3.2,<4"]
[tool.flit.sdist]
include = [
"LICENSES/",
"USAGE.md",
".proclamation.json",
".proclamation.json.license",
".reuse",
]
[tool.isort]
profile = "black"