forked from aminalaee/sqladmin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
70 lines (61 loc) · 1.53 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
61
62
63
64
65
66
67
68
69
70
[metadata]
name = sqladmin
version = 0.1.8
author = Amin Alaee
author_email = mohammadamin.alaee@gmail.com
description = Admin interface for SQLAlchemy.
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/aminalaee/sqladmin
license = BSD
classifiers =
Development Status :: 3 - Alpha
Environment :: Web Environment
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Topic :: Internet :: WWW/HTTP
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
[options]
packages = find:
include_package_data = True
zip_safe = False
python_requires = >=3.7
install_requires =
starlette
jinja2
sqlalchemy >=1.4, <1.5
wtforms >=3, <4
python-multipart
[options.package_data]
sqladmin = py.typed
[options.packages.find]
exclude =
tests*
[flake8]
ignore = E203, W503
max-line-length = 88
[mypy]
disallow_untyped_defs = True
ignore_missing_imports = True
show_error_codes = True
# [mypy-tests.*]
# Not yet supported in mypy
# https://github.com/python/mypy/issues/9440
# disable_error_code = no-redef
[tool:isort]
profile = black
combine_as_imports = True
[coverage:run]
source_pkgs = sqladmin, tests
[coverage:report]
exclude_lines =
pragma: no cover
pragma: nocover
except NotImplementedError
raise NotImplementedError
if TYPE_CHECKING: