-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.cfg
88 lines (75 loc) · 2.05 KB
/
setup.cfg
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
79
80
81
82
83
84
85
86
87
88
[metadata]
name = conformity-migration-tool
version = 0.13.0
description = Migrates your visiblity information in cloudconformity.com to cloudone.trendmicro.com
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/atiradocc/conformity-migration-tool
project_urls =
Source Code = https://github.com/atiradocc/conformity-migration-tool
license = MIT
license_file = LICENSE
author = Ronald Bautista
classifiers =
Development Status :: 3 - Alpha
Environment :: Console
Intended Audience :: Developers
Intended Audience :: Information Technology
Intended Audience :: System Administrators
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
[options]
packages = find:
package_dir = = src
include_package_data = True
python_requires = >= 3.7
# Dependencies are in setup.py for GitHub's dependency graph.
[options.packages.find]
where = src
[options.entry_points]
console_scripts =
conformity-migration = conformity_migration_tool.cli:cli
conformity-migration-aws = conformity_migration_tool.aws_cli:cli
[tool:pytest]
testpaths = tests
filterwarnings =
error
[flake8]
max-line-length = 88
select = C,E,F,W,B,B950
extend-ignore = E501
exclude =
.git,
__pycache__,
.venv,
old,
build,
dist
[mypy]
python_version = 3.7
allow_redefinition = True
disallow_subclassing_any = True
disallow_untyped_defs = False
check_untyped_defs = True
warn_redundant_casts = True
warn_unused_configs = True
warn_unused_ignores = True
warn_return_any = False
[mypy-importlib_metadata.*]
ignore_missing_imports = True
[mypy-PyInquirer.*]
ignore_missing_imports = True
[mypy-deepdiff.*]
ignore_missing_imports = True
[mypy-backoff.*]
ignore_missing_imports = True
[mypy-vcr.*]
ignore_missing_imports = True
[mypy-boto3.*]
ignore_missing_imports = True
[mypy-mypy_boto3_cloudformation.*]
ignore_missing_imports = True