forked from aws-cloudformation/cfn-lint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
78 lines (71 loc) · 2.29 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
"""
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
SPDX-License-Identifier: MIT-0
"""
import codecs
import re
from setuptools import find_packages
from setuptools import setup
def get_version(filename):
with codecs.open(filename, 'r', 'utf-8') as fp:
contents = fp.read()
return re.search(r"__version__ = ['\"]([^'\"]+)['\"]", contents).group(1)
version = get_version('src/cfnlint/version.py')
with open('README.md', encoding='utf-8') as f:
readme = f.read()
setup(
name='cfn-lint',
version=version,
description=('Checks CloudFormation templates for practices and behaviour \
that could potentially be improved'),
long_description=readme,
long_description_content_type="text/markdown",
keywords='aws, lint',
author='kddejong',
author_email='[email protected]',
url='https://github.com/aws-cloudformation/cfn-python-lint',
package_dir={'': 'src'},
package_data={'cfnlint': [
'data/CloudSpecs/*.json',
'data/AdditionalSpecs/*.json',
'data/Serverless/*.json',
'data/ExtendedSpecs/*/*.json',
'data/ProviderSchemasPatches/*/*.json',
'data/CfnLintCli/config/schema.json',
]},
packages=find_packages('src'),
zip_safe=False,
install_requires=[
'pyyaml>5.4',
'aws-sam-translator>=1.85.0',
'jsonpatch',
'jsonschema>=3.0,<5',
'networkx>=2.4,<4',
'junit-xml~=1.9',
'jschema_to_python~=1.2.3',
'sarif-om~=1.0.4',
'sympy>=1.0.0',
'regex>=2021.7.1',
],
python_requires='>=3.8, <=4.0, !=4.0',
entry_points={
'console_scripts': [
'cfn-lint = cfnlint.__main__:main'
]
},
license='MIT no attribution',
test_suite="unittest",
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
],
)