-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (34 loc) · 1.32 KB
/
setup.py
File metadata and controls
36 lines (34 loc) · 1.32 KB
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",
use_scm_version=True, # Automatically uses Git tags for versioning
setup_requires=['setuptools-scm==7.1.0'], # Ensure setuptools-scm is used. Pin setuptools-scm to version 7.1.0
description="Client for the OS2borgerPC system",
long_description=long_description,
url="https://github.com/OS2borgerPC/",
author="Magenta ApS",
author_email="info@magenta-aps.dk",
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_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",
)