Files
ProxLB/setup.py
gyptazy 4900cfb53b Refactor of code base for ProxLB
* Native Python3 project
 * Oop style
 * Native Debian packaging
   - Renamed package: python3-proxlb

Fixes: #114
2025-03-01 09:47:29 +01:00

18 lines
394 B
Python

from setuptools import setup
setup(
name="python3-proxlb",
version="1.1.0",
description="My Python Package",
long_description="My Python Package",
author="Florian Paul Azim Hoberg (gyptazy)",
author_email="gyptazy@gyptazy.com",
packages=["python3-proxlb"],
install_requires=[
"requests",
"urllib3",
"proxmoxer",
"yaml",
],
)