forked from terraform-compliance/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
62 lines (59 loc) · 1.72 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
57
58
59
60
61
62
"""
BDD test framework for terraform
"""
from setuptools import find_packages, setup
from terraform_compliance import __app_name__, __version__
dependencies = [
'radish-bdd==0.13.1',
'gitpython>=3.0.5',
'netaddr>=0.7.19',
'colorful>=0.5.4',
'filetype>=1.0.5',
'junit-xml>=1.8',
'lxml>=4.5.0',
'emoji>=0.5.4',
'mock>=3.0.5',
'semver>=2.10.2',
'IPython==7.16.1',
'diskcache>=5.1.0',
'orjson>=3.8.3',
]
setup(
name=__app_name__,
version=__version__,
url='https://github.com/eerkunt/terraform-compliance',
license='MIT',
author='Emre Erkunt',
author_email='[email protected]',
description='BDD test framework for terraform',
long_description=__doc__,
packages=find_packages(exclude=['tests']),
include_package_data=True,
zip_safe=False,
platforms='any',
install_requires=dependencies,
entry_points={
'console_scripts': [
'terraform-compliance=terraform_compliance.main:cli',
],
},
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX',
'Operating System :: MacOS',
'Operating System :: Unix',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: Software Development :: Libraries :: Python Modules',
],
extras_require = {
"faster_parsing": ["orjson"],
}
)