forked from sqlalchemy/sqlalchemy2-stubs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
56 lines (48 loc) · 1.44 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
[metadata]
name = sqlalchemy2-stubs
version = 0.0.2a2
description = Typing Stubs for SQLAlchemy 1.4
long_description = file: README.rst
long_description_content_type = text/x-rst
url = http://www.sqlalchemy.org
author = Mike Bayer
author_email = mike_mp@zzzcomputing.com
license = MIT
license_file = LICENSE
classifiers =
Development Status :: 3 - Alpha
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
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/sqlalchemy/sqlalchemy2-stubs/
[options]
python_requires = >=3.6
install_requires =
mypy>=0.800
typing-extensions>=3.7.4
[options.data_files]
[mypy]
incremental = True
strict = True
warn_unused_ignores = False
[flake8]
show-source = false
enable-extensions = G
ignore =
E203,E305,E711,E712,E721,E722,E741,
N801,N802,N806,
F401,
W503,W504
exclude = .venv,.git,.tox,dist,doc,*egg,build
import-order-style = google
application-import-names = sqlalchemy,test,sqlalchemy-stubs
per-file-ignores =
*.pyi: F403, F405, F811, E127, E128, E266, E301, E302, E501, E701, E704, E741, B303