forked from fsfe/reuse-tool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
85 lines (74 loc) · 2.08 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
# SPDX-FileCopyrightText: 2018 Free Software Foundation Europe e.V. <https://fsfe.org>
# SPDX-FileCopyrightText: 2022 Alliander N.V. <https://www.alliander.com>
# SPDX-FileCopyrightText: 2022 Carmen Bianca Bakker <[email protected]>
#
# SPDX-License-Identifier: GPL-3.0-or-later
[tool.poetry]
name = "reuse"
version = "1.0.0"
description = "reuse is a tool for compliance with the REUSE recommendations."
authors = [
"Free Software Foundation Europe <[email protected]>",
]
maintainers = [
"Carmen Bianca Bakker <[email protected]>",
]
license = "Apache-2.0 AND CC0-1.0 AND GPL-3.0-or-later"
readme = "README.md"
packages = [
{ include = "reuse", from = "src" }
]
include = [
{ path = "tests", format = "sdist" },
{ path = "po", format = "sdist" },
{ path = "src/reuse/locale/**/*.mo", format="wheel" },
{ path = "AUTHORS.rst" },
{ path = "README.md" },
{ path = "CHANGELOG.md" },
{ path = ".reuse" },
{ path = "LICENSES" },
]
homepage = "https://reuse.software/"
repository = "https://github.com/fsfe/reuse-tool"
documentation = "https://reuse.readthedocs.org/"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
]
[tool.poetry.dependencies]
python = "^3.6.2"
Jinja2 = "^3.0.0"
binaryornot = "^0.4.4"
"boolean.py" = ">=3.8"
license-expression = ">=1.0"
python-debian = "^0.1.38,!=0.1.45,!=0.1.46,!=0.1.47"
setuptools = "*"
[tool.poetry.dev-dependencies]
Sphinx = ">=4.0.0"
recommonmark = "^0.7.1"
sphinx-autodoc-typehints = "^1.12.0"
sphinx-rtd-theme = "^1.0.0"
sphinxcontrib-apidoc = "^0.3.0"
black = ">=20"
isort = "^5.6.0"
bump2version = "^1.0.0"
pre-commit = "^2.9.0"
pylint = "^2.12.2"
pytest = ">=6.0.0"
pytest-cov = ">=2.10.0"
[tool.poetry.scripts]
reuse = 'reuse._main:main'
[tool.poetry.build]
generate-setup-file = false
script = "build.py"
[build-system]
requires = ["poetry-core>=1.1.0", "setuptools"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 80
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
line_length = 80