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
56
57
|
#!/usr/bin/env python3
from setuptools import setup
# =====
def main() -> None:
with open("requirements.txt") as requirements_file:
install_requires = list(filter(None, requirements_file.read().splitlines()))
setup(
name="kvmd",
version="0.44",
url="https://github.com/pi-kvm/pi-kvm",
license="GPLv3",
author="Maxim Devaev",
author_email="[email protected]",
description="The main Pi-KVM daemon",
platforms="any",
packages=[
"kvmd",
"kvmd.extras",
"kvmd.extras.cleanup",
"kvmd.extras.wscli",
],
package_data={
"kvmd": ["data/*.yaml"],
},
entry_points={
"console_scripts": [
"kvmd = kvmd:main",
"kvmd-cleanup = kvmd.extras.cleanup:main",
"kvmd-wscli = kvmd.extras.wscli:main",
],
},
install_requires=install_requires,
classifiers=[
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3.6",
"Topic :: System :: Systems Administration",
"Operating System :: POSIX :: Linux",
"Intended Audience :: System Administrators",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Telecommunications Industry",
],
)
if __name__ == "__main__":
main()
|