-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.cfg
60 lines (54 loc) · 1.55 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
[metadata]
name = zimports
version = 0.6.2
description = Yet another import fixing tool
long_description = file: README.rst
long_description_content_type = text/x-rst
url = https://github.com/sqlalchemyorg/zimports
author = Mike Bayer
author_email = [email protected]
license = MIT
license_files = LICENSE
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
project_urls =
Issue Tracker=https://github.com/sqlalchemyorg/zimports/issues
[options]
zip_safe = False
python_requires = >= 3.7
packages = find:
install_requires =
pyflakes
flake8-import-order
tomli
importlib-metadata;python_version<"3.10"
[options.entry_points]
console_scripts =
zimports = zimports:main
[options.packages.find]
include=
zimports*
[tool:pytest]
addopts= --tb native -v -r sfxX --maxfail=25 -p no:warnings -p no:logging
python_files=tests.py
[flake8]
enable-extensions = G
# E203 is due to https://github.com/PyCQA/pycodestyle/issues/373
ignore =
A003,
D,
E203,E305,E711,E712,E721,E722,E741,
N801,N802,N806,
RST304,RST303,RST299,RST399,
W503,W504
exclude = .venv,.git,.tox,dist,doc,*egg,build,test_files/*,.github/*
import-order-style = google