forked from gyptazy/ProxLB
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (20 loc) · 837 Bytes
/
setup.py
File metadata and controls
21 lines (20 loc) · 837 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup
setup(
name="proxlb",
version="1.1.9.1",
description="An advanced resource scheduler and load balancer for Proxmox clusters.",
long_description="An advanced resource scheduler and load balancer for Proxmox clusters that also supports maintenance modes and affinity/anti-affinity rules.",
author="Florian Paul Azim Hoberg",
author_email="gyptazy@gyptazy.com",
maintainer="Florian Paul Azim Hoberg",
maintainer_email="gyptazy@gyptazy.com",
url="https://github.com/gyptazy/ProxLB",
packages=["proxlb", "proxlb.utils", "proxlb.models"],
install_requires=[
"requests",
"urllib3",
"proxmoxer",
"pyyaml",
],
data_files=[('/etc/systemd/system', ['service/proxlb.service']), ('/etc/proxlb/', ['config/proxlb_example.yaml'])],
)