-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
41 lines (36 loc) · 1011 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
34
35
36
37
38
39
40
41
[build-system]
requires = ["chronver", "setuptools>=66"]
build-backend = "setuptools.build_meta"
[project]
authors = [
{ name = "RadiaSoft LLC", email = "[email protected]" },
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Programming Language :: Python",
"Topic :: System :: Systems Administration",
]
dependencies = [
"acme>=2.10",
"bcrypt>=3.1",
"cryptography>=42",
"ipaddress",
"pykern",
]
description = "RadiaSoft host configuration management"
dynamic = ["version"]
name = "rsconf"
readme = "README.md"
[project.scripts]
rsconf = "rsconf.rsconf_console:main"
[project.urls]
Homepage = "http://git.radiasoft.org/rsconf"
[tool.setuptools.package-data]
rsconf = ["package_data/**"]
[tool.setuptools.packages.find]
include = ["rsconf*"]