-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
55 lines (44 loc) · 1.34 KB
/
setup.cfg
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
[metadata]
name = prevent-sleep
url = https://github.com/lhupfeldt/prevent_sleep.git
author = Lars Hupfeldt Nielsen
author_email = [email protected]
description = Prevent sleep/suspend when there are (active) SSH or NFS clients.
long_description = file: README.md
long_description_content_type = text/markdown
license = BSD
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Natural Language :: English
Operating System :: POSIX :: Linux
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Topic :: System :: Systems Administration
Topic :: System :: Networking :: Monitoring
[options]
zip_safe = True
install_requires =
psutil >= 5.9.5
dbus-python >= 1.3.2
# Use OS package python3-pystemd instead of 'pystemd' Python package
# pystemd >= 0.13.2
python_requires = >= 3.10
package_dir=
prevent_sleep = src
prevent_sleep.checks = src/checks
prevent_sleep.inhibitors = src/inhibitors
[options.package_data]
prevent_sleep =
data/prevent-sleep.service
[options.entry_points]
console_scripts =
# prevent_sleep entry point name repeated in install_service.py
prevent-sleep = prevent_sleep.__main__:cli
[options.extras_require]
dev =
nox
[aliases]
test = nox