-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.cfg
58 lines (53 loc) · 1.41 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
[metadata]
name = pylint_flask_sqlalchemy
version = attr:pylint_flask_sqlalchemy.VERSION
author = herrboyer
author_email = [email protected]
maintainer = Renaud Boyer
maintainer_email = [email protected]
home_page = https://github.com/anybox/pylint_flask_sqlalchemy
project_urls =
Bug Tracker = https://github.com/anybox/pylint_flask_sqlalchemy/issues
Documentation = https://github.com/anybox/pylint_flask_sqlalchemy
Source Code = https://github.com/anybox/pylint_flask_sqlalchemy
description = A Pylint plugin to improve static code analysis of Flask-SQLAlchemy based projects
long_description = file: README.md, CHANGELOG.md
long_description_content_type = text/markdown
license = MIT
platform = any
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
Operating System :: OS Independent
Programming Language :: Python :: 3 :: Only
License :: OSI Approved :: MIT License
Typing :: Typed
Framework :: Flask
[options]
zip_safe = false
include_package_data = true
python_requires = >= 3.6
install_requires =
pylint
sqlalchemy
Flask-SQLAlchemy
[options.extras_require]
dev =
black
mypy
pytest
pytest-xdist[psutil]
[tool:pytest]
addopts =
-n auto
[mypy]
warn_unused_configs = True
ignore_missing_imports = True
warn_unused_ignores = True
[pylint.'MESSAGES CONTROL']
disable =
missing-docstring,
too-few-public-methods,
no-self-use,
import-outside-toplevel,
unused-argument