forked from pykickstart/pykickstart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
29 lines (26 loc) · 863 Bytes
/
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
[build-system]
requires = ["setuptools>=59.0"]
build-backend = "setuptools.build_meta"
[project]
name = 'pykickstart'
version = '3.52'
authors = [
{name='Chris Lumens', email='clumens@redhat.com'},
]
maintainers = [
{name='Brian C. Lane', email='bcl@redhat.com'},
]
description = 'Python module for manipulating kickstart files'
readme = "README.rst"
license = { file="COPYING" }
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Operating System :: OS Independent",
]
## These are still in setup.py because tox doesn't know how to read pyproject.toml
dynamic = ['dependencies', 'optional-dependencies']
[project.urls]
"Homepage" = "https://fedoraproject.org/wiki/pykickstart"
"Bug Tracker" = "https://github.com/pykickstart/pykickstart/issues"