-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (46 loc) · 1.53 KB
/
pyproject.toml
File metadata and controls
52 lines (46 loc) · 1.53 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "initial-setup"
version = "0.3.101"
authors = [
{name = "Martin Kolman", email = "mkolman@redhat.com"}
]
description = "Post-installation configuration utility"
readme = "README.rst"
license = {text = "GPL-2.0-or-later"}
keywords = ["firstboot", "initial", "setup"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: X11 Applications :: GTK",
"Environment :: Console",
"Intended Audience :: System Administrators",
"Topic :: System :: Systems Administration",
"Programming Language :: Python :: 3",
]
requires-python = ">=3.8"
dynamic = ["dependencies"]
[project.urls]
Homepage = "https://fedoraproject.org/wiki/InitialSetup"
Repository = "https://github.com/rhinstaller/initial-setup"
issues = "https://github.com/rhinstaller/initial-setup/issues"
[tool.setuptools.packages.find]
exclude = ["po*", "scripts*", "systemd*", "tests*"]
[tool.setuptools.package-data]
"*" = ["*.glade"]
[tool.setuptools.data-files]
"lib/systemd/system" = ["systemd/*.service"]
"libexec/initial-setup" = [
"scripts/run-initial-setup",
"scripts/firstboot-windowmanager",
"scripts/initial-setup-text",
"scripts/initial-setup-graphical",
"scripts/run-gui-backend.guixorg",
"scripts/run-gui-backend.guiweston",
"scripts/run-gui-backend",
"scripts/reconfiguration-mode-enabled"
]
"share/doc/initial-setup" = ["ChangeLog"]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}