-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
54 lines (50 loc) · 2.04 KB
/
setup.py
File metadata and controls
54 lines (50 loc) · 2.04 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
from setuptools import setup
import sys
with open('README.md') as f:
long_description = f.read()
if sys.version_info[:3] < (3, 10, 1):
raise Exception("cgxsh requires Python >= 3.10+")
setup(name='cgxsh',
version='1.0.2b1',
description='Command-line access to the controller-based CloudGenix ION Troubleshooting Toolkit.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/ebob9/cgxsh',
author='Aaron Edwards',
author_email='cgxsh@ebob9.com',
license='MIT',
install_requires=[
'cloudgenix >= 6.3.1b1',
'websockets >= 12.0',
'fuzzywuzzy >= 0.17.0',
'pyyaml >= 5.1.2',
'tabulate >= 0.8.5',
'cryptography >= 2.8'
],
packages=['cgxsh_lib'],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: Microsoft :: Windows :: Windows 10",
"Operating System :: Microsoft :: Windows :: Windows 11",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Operating System :: Other OS",
"Topic :: Terminals"
],
python_requires='>=3.10.1',
entry_points={
'console_scripts': [
'cgxsh = cgxsh_lib:toolkit_client',
'cgxsh_generic_ws = cgxsh_lib:generic_client',
'cgxsh_edit_config = cgxsh_lib.file_crypto:edit_config_file',
'cgxsh_decrypt_config = cgxsh_lib.file_crypto:decrypt_config_file',
'cgxsh_encrypt_config = cgxsh_lib.file_crypto:encrypt_config_file',
'cgxsh_create_defaultconfig = cgxsh_lib.file_crypto:create_config_file'
]
},
)