-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
pyproject.toml
55 lines (50 loc) · 1.32 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "sysdweb"
version = "1.1.5"
description = "Control systemd services through Web or REST API"
readme = "README.md"
requires-python = ">=3.10"
license = {file = "LICENSE"}
keywords = ["REST API", "systemd"]
authors = [
{name = "Óscar García Amor", email = "ogarcia@connectical.com"}
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Bottle",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Topic :: System",
"Topic :: Utilities"
]
dependencies = [
"bottle ~= 0.12.25",
"dbus-python ~= 1.3.2",
"python-pam ~= 2.0.2",
"systemd-python"
]
[tool.setuptools.packages.find]
include = ["sysdweb*"]
[tool.setuptools.package-data]
"*" = [
"sysdweb.conf"
]
sysdweb = [
"templates/static/css/*",
"templates/static/img/*",
"templates/static/js/*",
"templates/views/*"
]
[project.scripts]
sysdweb = "sysdweb.main:main"
[project.urls]
"Bug Reports" = "https://github.com/ogarcia/sysdweb/issues"
"Source" = "https://github.com/ogarcia/sysdweb"