forked from Skyscanner/cfripper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
47 lines (40 loc) · 1.34 KB
/
setup.py
File metadata and controls
47 lines (40 loc) · 1.34 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
from pathlib import Path
from setuptools import find_packages, setup
from cfripper.__version__ import __version__
project_root_path = Path(__file__).parent
install_requires = ["boto3>=1.4.7,<2", "PyYAML>=4.2b1", "pycfmodel>=0.5.1", "cfn_flip>=1.2.0"]
dev_requires = [
"black==19.10b0",
"flake8>=3.3.0",
"isort==4.3.21",
"pytest>=3.6",
"pytest-cov>=2.5.1",
"pip-tools==4.2.0",
"moto==1.3.13",
]
docs_requires = [
"ansi2html==1.5.2",
"markdown-include==0.5.1",
"mkdocs-exclude==1.0.2",
"mkdocs-macros-plugin",
"mkdocs-material==4.5.1",
"mkdocs==1.0.4",
"pygments==2.5.2",
]
setup(
name="cfripper",
version=__version__,
author="Skyscanner Product Security",
author_email="security@skyscanner.net",
entry_points={"console_scripts": ["cfripper=cfripper.cli:cli"]},
long_description=(project_root_path / "README.md").read_text(),
long_description_content_type="text/markdown",
url="https://github.com/Skyscanner/cfripper",
description="Library and CLI tool for analysing CloudFormation templates and check them for security compliance.",
packages=find_packages(exclude=("docs", "tests")),
platforms="any",
python_requires=">=3.7",
install_requires=install_requires,
tests_require=dev_requires,
extras_require={"dev": dev_requires, "docs": docs_requires},
)