-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (33 loc) · 1.11 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="dwcflint",
version="1.2.16",
author="Daniel Wellington",
author_email="servicedesk@danielwellington.com",
description="A collection of extra rules for linting cloudformation files",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/dwtechnologies/dwcflint",
packages=setuptools.find_packages(),
install_requires=[
'cfn-lint>=0.54.4'
],
python_requires='>=3.6',
scripts=[
'scripts/dwcflint'
],
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python",
"Environment :: Console",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Operating System :: POSIX",
"Operating System :: MacOS",
"Topic :: Software Development :: Quality Assurance"
],
)