Compare commits

...

1 Commits

Author SHA1 Message Date
Florian Paul Azim Hoberg (@gyptazy)
7bb6ca4c3b fix 2025-02-28 10:12:06 +01:00
17 changed files with 29 additions and 0 deletions

2
pyproject.toml Normal file
View File

@@ -0,0 +1,2 @@
[build-system]
requires = ["setuptools>=42", "stdeb"]

4
requirements.txt Normal file
View File

@@ -0,0 +1,4 @@
proxmoxer
requests
urllib3
PyYAML

23
setup.py Normal file
View File

@@ -0,0 +1,23 @@
from setuptools import setup, find_packages
setup(
name='proxlb',
version='1.1.0',
description='A DRS alike loadbalancer for Proxmox clusters.',
author='Florian Paul Azim Hoberg',
author_email='gyptazy@gyptazy.com',
url='https://github.com/gyptazy/ProxLB',
packages=find_packages(),
install_requires=[
'python3-proxmoxer',
'python3-urllib3',
'python3-requests',
'python3-yaml',
],
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: GPL v3',
'Operating System :: OS Independent',
],
python_requires='>=3.6',
)