mirror of
https://github.com/gyptazy/ProxLB.git
synced 2026-04-05 20:31:57 +02:00
fix
This commit is contained in:
2
pyproject.toml
Normal file
2
pyproject.toml
Normal file
@@ -0,0 +1,2 @@
|
||||
[build-system]
|
||||
requires = ["setuptools>=42", "stdeb"]
|
||||
4
requirements.txt
Normal file
4
requirements.txt
Normal file
@@ -0,0 +1,4 @@
|
||||
proxmoxer
|
||||
requests
|
||||
urllib3
|
||||
PyYAML
|
||||
23
setup.py
Normal file
23
setup.py
Normal 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',
|
||||
)
|
||||
Reference in New Issue
Block a user