-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (30 loc) · 804 Bytes
/
pyproject.toml
File metadata and controls
34 lines (30 loc) · 804 Bytes
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
[build-system]
requires = [
"setuptools>=42",
"wheel"
]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
[project]
name = "livefs-edit"
version = "0.0.4"
dependencies = [
"PyYAML"
]
requires-python = ">=3.6"
authors = [
{ name = "Michael Hudson-Doyle", email = "michael.hudson@ubuntu.com" },
]
description = "Tools for modifying Ubuntu Live ISOs"
readme = { file = "README.md", content-type = "text/markdown" }
license = "GPL-3.0"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: POSIX :: Linux",
]
[project.urls]
Homepage = "https://github.com/mwhudson/livefs-editor"
Issues = "https://github.com/mwhudson/livefs-editor/issues"
[project.entry-points."console_scripts"]
livefs-edit = "livefs_edit:__main__.main"