-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
36 lines (36 loc) · 896 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
"""Setup proxcli"""
from setuptools import setup
setup(
name='proxcli',
version='1.0',
author='David GUENAULT',
author_email='david.guenault@gmail.com',
maintainer_email='david.guenault@gmail.com',
maintainer='David GUENAULT',
license='Apache License Version 2.0',
python_requires=">=3.11",
py_modules=[
'proxcli',
'proxmoxlib',
'proxcli_exceptions',
'stack_config',
'stack_operations'
],
install_requires=[
'beautifultable==1.1.0',
'proxcli==1.0',
'proxmoxer==2.0.1',
'requests==2.31.0',
'requests-toolbelt==1.0.0',
'termcolor==2.3.0',
'typer==0.9.0',
'typing_extensions==4.7.1',
'wcwidth==0.2.6',
'PyYAML==6.0.1',
'rich==13.6.0'
],
entry_points='''
[console_scripts]
proxcli=proxcli:app
''',
)