-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.cfg
More file actions
46 lines (38 loc) · 1.16 KB
/
setup.cfg
File metadata and controls
46 lines (38 loc) · 1.16 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
[metadata]
name = flake8-secure-coding-standard
description = Flake8 plugin adding some checks to make Python code adhere to more secure coding standard
long_description = file:README.md
long_description_content_type = text/markdown
url = https://github.com/Takishima/flake8-secure-coding-standard
author = Damien Nguyen
author_email = ngn.damien@gmail.com
license = Apache2
license_file = LICENSE
classifiers =
License :: OSI Approved :: Apache Software License
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
[options]
zip_safe = False
py_modules = flake8_secure_coding_standard
python_requires = >=3.8
setup_requires =
setuptools_scm[toml]
install_requires =
flake8>=3.7,<8.0
[options.entry_points]
flake8.extension =
SCS=flake8_secure_coding_standard:Plugin
[options.extras_require]
test =
mock
pytest
pytest-cov
pytest-mock
[bdist_wheel]
universal = True
# ==============================================================================