-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (30 loc) · 866 Bytes
/
pyproject.toml
File metadata and controls
33 lines (30 loc) · 866 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
[build-system]
requires = ["flit_core >=2,<4"]
build-backend = "flit_core.buildapi"
[tool.flit.metadata]
module = "hostlist"
author = "Robin Roth"
author-email = "robin.roth@kit.edu"
home-page = "https://github.com/particlekit/hostlist"
classifiers = [
"Development Status :: 4 - Beta", "License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Environment :: Console",
"Intended Audience :: System Administrators",
"Operating System :: POSIX :: Linux",
"Topic :: System :: Systems Administration"
]
requires = [
"PyYAML",
"termcolor",
"requests",
"cherrypy",
"GitPython",
"ansible-cmdb",
"typing"
]
requires-python = ">=3.2"
description-file = "README.md"
[tool.flit.scripts]
buildfiles = "hostlist.buildfiles:main"
addhost = "hostlist.addhost:main"
hostlist-daemon = "hostlist.daemon:main"