-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpyproject.toml
33 lines (29 loc) · 985 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
30
31
32
33
[tool.poetry]
name = "ubuntu-server-netboot"
packages = [
{include = "usn"}
]
version = "0.1.1"
description = "This utility generates a netboot directory tree from an Ubuntu Server Live ISO image, an image based on the subiquity installer."
authors = ["dann frazier <[email protected]>", "Taihsiang Ho (tai271828) <[email protected]>"]
license = "GPL-2.0-only"
readme = "README.md"
classifiers = [
"Topic :: System :: Installation/Setup",
"Topic :: Utilities",
"Development Status :: 6 - Mature",
"Programming Language :: Python :: 3 :: Only",
"Operating System :: POSIX",
"Environment :: Console",
"Intended Audience :: System Administrators",
"Natural Language :: English",
]
[tool.poetry.dependencies]
python = "^3.6.5"
[tool.poetry.dev-dependencies]
pytest = "^6.2.4"
[tool.poetry.scripts]
ubuntu-server-netboot = "usn.usn:ubuntu_server_netboot"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"