-
Notifications
You must be signed in to change notification settings - Fork 11
/
pyproject.toml
48 lines (43 loc) · 1.38 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
[project]
name = "thoth-package-extract"
description = "Tool and library for extracting packages from a docker build log"
license = {file = "LICENSE"}
authors = [
{name = "Fridolin Pokorny", email = "[email protected]"}
]
maintainers = [
{name = "The Thoth Developers"}
]
dynamic = ["version", "dependencies"]
readme = "README.rst"
keywords = [
"docker",
"image",
"openshift",
"tool",
"library",
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Environment :: Console",
"Intended Audience :: Developers",
"License:: OSI Approved:: GNU General Public License v3 or later(GPLv3+)",
"Operating System :: OS Independent",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
[project.urls]
Documentation = "https://github.com/thoth-station/package-extract"
Source = "https://github.com/thoth-station/package-extract"
[project.scripts]
thoth-package-extract = "thoth.package_extract.cli:cli"
[build-system]
requires = ["setuptools", "wheel", "setuptools-pipfile"]
build-backend = "setuptools.build_meta"
[tool.setuptools-pipfile]
[tool.setuptools.dynamic]
version = {attr = "thoth.package_extract.__version__"}