-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
33 lines (31 loc) · 1008 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "dism"
version = "0.0.2"
authors = [
{ name="SamuelLouf" },
]
description = "Easily use Microsoft's DISM Command-Line Interface in Python."
readme = "README.md"
requires-python = ">=3"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows",
"Operating System :: Microsoft :: Windows :: Windows 10",
"Operating System :: Microsoft :: Windows :: Windows 11",
"Natural Language :: English",
"Topic :: Software Development",
"Topic :: System",
"Topic :: System :: Boot",
"Topic :: System :: Installation/Setup",
"Topic :: System :: Operating System",
]
[project.urls]
Homepage = "https://github.com/samuellouf/DISM"
Issues = "https://github.com/samuellouf/DISM/issues"