-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.cfg
More file actions
36 lines (28 loc) · 751 Bytes
/
setup.cfg
File metadata and controls
36 lines (28 loc) · 751 Bytes
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
[metadata]
author = Alexis Pierru
author_email = ap@datatheorem.com
name = flake8-alfred
version = 1.1.2
description = Flake8 plugin warning for unsafe functions
long_description = file: README.md
long_description_content_type = text/markdown
classifiers =
Development Status :: 5 - Production/Stable
Programming Language :: Python :: 3.6
[aliases]
test = pytest
[options]
packages = find:
include_package_data = True
python_requires = >=3.6
install_requires =
flake8
importlib-metadata; python_version < "3.8"
setup_requires = pytest-runner
tests_require = pytest
[options.entry_points]
flake8.extension = B1 = flake8_alfred:WarnSymbols
[mypy]
disallow_untyped_defs = True
ignore_missing_imports = True
strict_optional = True