mirror of
https://github.com/gyptazy/ProxLB.git
synced 2026-04-06 04:41:58 +02:00
* Native Python3 project * Oop style * Native Debian packaging - Renamed package: python3-proxlb Fixes: #114
18 lines
394 B
Python
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",
|
|
],
|
|
)
|