forked from datatheorem/flake8-alfred
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
33 lines (25 loc) · 654 Bytes
/
setup.cfg
File metadata and controls
33 lines (25 loc) · 654 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
[metadata]
author = Alexis Pierru
author_email = ap@datatheorem.com
name = flake8-alfred
version = 1.1.1
description = Flake8 plugin warning for unsafe functions
long_description = file: README.md
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
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