forked from radiac/django-tagulous
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
72 lines (66 loc) · 1.99 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
[metadata]
name = django-tagulous
description = Fabulous Tagging for Django
long_description = file: README.rst
keywords = django tagging
author = Richard Terry
author_email = code@radiac.net
license = BSD
classifiers =
Development Status :: 5 - Production/Stable
Environment :: Web Environment
Framework :: Django
Framework :: Django :: 2.2
Framework :: Django :: 3.0
Framework :: Django :: 3.1
Framework :: Django :: 3.2
Framework :: Django :: 4.0
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
url = https://radiac.net/projects/django-tagulous/
project_urls =
Documentation = https://radiac.net/projects/django-tagulous/documentation/
Source = https://github.com/radiac/django-tagulous
Tracker = https://github.com/radiac/django-tagulous/issues
[options]
python_requires = >=3.6
packages = find:
install_requires = Django>=2.2
include_package_data = true
zip_safe = false
[options.packages.find]
exclude =
tests*
docs*
[tool:pytest]
python_paths = .
testpaths = tagulous tests
addopts = --black --isort --flake8 --cov=tagulous --cov-report=term --cov-report=html --ignore-glob=tests/tagulous_tests_migration/migrations_*
django_find_project = false
DJANGO_SETTINGS_MODULE = tests.settings
[coverage:run]
parallel=True
[flake8]
ignore = E123,E128,E203,E501,W503
max-line-length = 88
exclude = .git,__pycache__,build,dist,.tox
[isort]
multi_line_output = 3
line_length = 88
known_django = django
known_first_party = tagulous
sections = FUTURE,STDLIB,DJANGO,THIRDPARTY,FIRSTPARTY,LOCALFOLDER
include_trailing_comma = True
lines_after_imports = 2
skip = .tox,.git
[doc8]
max-line-length = 88
ignore-path = *.txt,.tox