-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.cfg
82 lines (76 loc) · 1.84 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
71
72
73
74
75
76
77
78
79
80
81
82
[metadata]
name=django-db-adapter
version=2.0.1
url=https://github.com/weynelucas/django-db-adapter/
author=Lucas Weyne
author_email=weynelucas@gmail.com
description=A flexible toolkit for customize how Django creates the databse objects for the application schema
long_description=file: README.md
long_description_content_type=text/markdown
download_url=https://github.com/weynelucas/django-db-adapter/archive/2.0.1.tar.gz
keywords=django database schema editor oracle django-db-adapter
classifiers=
Development Status :: 5 - Production/Stable
Environment :: Web Environment
Framework :: Django
Framework :: Django :: 1.11
Framework :: Django :: 2.2
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
Topic :: Internet :: WWW/HTTP
[options]
python_requires = >= 3.6
packages = find:
include_package_data = true
zip_safe = false
install_requires =
parse >= 1.19
sqlparse >= 0.2.2
[options.packages.find]
exclude =
tests*
[flake8]
exclude =
env,
build,
dist,
.git,
.toml,
.tox,
.env,
ignore =
E203,
E266,
W503,
W504,
W601
per-file-ignores =
tests/*:E501
max-line-length = 80
[isort]
combine_as_imports = true
multi_line_output = 3
include_trailing_comma = True
force_grid_wrap = 0
use_parentheses = True
line_length = 80
indent = 4
atomic = true
default_section = THIRDPARTY
known_first_party = db_adapter, tests
known_django = django
sections = FUTURE,STDLIB,THIRDPARTY,DJANGO,FIRSTPARTY,LOCALFOLDER
[tool:pytest]
console_output_style = classic
[coverage:run]
omit =
env/*,
build/*,
dist/*,
tests/*