-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.cfg
67 lines (59 loc) · 1.27 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
[metadata]
name = lintipy
author = Johannes Hoppe
author_email = [email protected]
description = Run python based static file linters on AWS lambda.
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/lambda-lint/lintipy
license = Apache-2
classifier =
Development Status :: 4 - Beta
Environment :: Console
Intended Audience :: Developers
Intended Audience :: Information Technology
License :: OSI Approved :: Apache Software License
Operating System :: OS Independent
Programming Language :: Python
keywords =
linter
lambda
aws
amazon
[options]
install_requires =
## boto is pre-installed on aws lambda
# boto3
cryptography
PyJWT>=2.0.0
requests
setup_requires =
setuptools_scm
pytest-runner
tests_require =
boto3
httpretty
pytest
pytest-sugar
pytest-cov
[options.packages.find]
exclude =
tests
[bdist_wheel]
universal = 1
[aliases]
test = pytest
[tool:pytest]
addopts = --cov=lintipy --cov-report xml
[flake8]
max-line-length=99
exclude = venv,.tox,.eggs
[pydocstyle]
add_ignore = D1
[isort]
atomic = true
line_length = 99
known_first_party = tests
include_trailing_comma = True
default_section=THIRDPARTY
combine_as_imports = true