forked from OS2borgerPC/os2borgerpc-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (34 loc) · 1.19 KB
/
setup.py
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
from setuptools import setup
with open("README.rst", "r") as fh:
long_description = fh.read()
setup(
# Keep this name in sync with the one in os2borgerpc_client/jobmanager.py
name="os2borgerpc_client",
version="2.1.0",
description="Client for the OS2borgerPC system",
long_description=long_description,
url="https://github.com/OS2borgerPC/",
author="Magenta ApS",
author_email="[email protected]",
license="GPLv3",
packages=["os2borgerpc.client", "os2borgerpc.client.security"],
install_requires=["PyYAML", "distro", "requests", "semver", "chardet"],
scripts=[
"bin/get_os2borgerpc_config",
"bin/set_os2borgerpc_config",
"bin/os2borgerpc_find_gateway",
"bin/os2borgerpc_register_in_admin",
"bin/os2borgerpc_push_config_keys",
"bin/jobmanager",
"bin/register_new_os2borgerpc_client.sh",
"bin/admin_connect.sh",
"bin/randomize_jobmanager.sh",
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: POSIX :: Linux",
],
zip_safe=False,
python_requires=">=3.6",
)