-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
56 lines (51 loc) · 1.5 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#!/usr/bin/env python
import os
import sys
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
with open('README.md', 'r', encoding='utf8', errors='ignore') as f:
readme = f.read()
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name='acido',
packages=['acido', 'acido.azure_utils', 'acido.utils'],
version='0.14',
description='Azure Container Instance Distributed Operations',
long_description=readme,
long_description_content_type='text/markdown',
author='Xavier Álvarez',
author_email='[email protected]',
url='https://github.com/merabytes/acido',
license='MIT',
install_requires=[
'azure-cli==2.18.0',
'azure-core==1.10.0',
'azure-mgmt-core==1.2.1',
'azure.identity==1.3',
'azure.keyvault.secrets==4.2.0',
'azure.storage.blob==12.7.1',
'PyJWT==1.7.1',
'websockets',
'huepy',
'msrestazure',
'beaupy'
],
keywords=[
'Security',
'Cloud Computing',
'Red Team',
'Pentesting'
],
classifiers=[
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
]
)