-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
41 lines (36 loc) · 1.19 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "par2cmdline-turbo"
version = "1.2.0"
authors = [
{ name = "Brent Huisman", email = "[email protected]" },
]
maintainers = [
{ name = "Brent Huisman", email = "[email protected]" },
]
description = "Produce, verify and repair par2 files."
readme = {file = "README.md", content-type = "text/markdown"}
license = {file = "LICENSE"}
requires-python = ">=3.8"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)",
"Topic :: Utilities",
]
[project.urls]
Homepage = "https://github.com/brenthuisman/par2cmdline-turbo.py"
Issues = "https://github.com/brenthuisman/par2cmdline-turbo.py/issues"
Changelog = "https://github.com/brenthuisman/par2cmdline-turbo.py/releases"
[tool.setuptools]
include-package-data = true
[project.scripts]
par2 = "par2.cli:__call"
[tool.setuptools.packages.find]
include = ["par2", "par2.*"]