forked from revsys/django-friendship
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
72 lines (66 loc) · 1.66 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_friendship
version = 1.9.6
description = django-friendship provides an easy extensible interface for following and friendship
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/revsys/django-friendship/
author = Frank Wiles
author_email = [email protected]
license = BSD-3-Clause
license_file = LICENSE.txt
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
Framework :: Pytest
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Operating System :: OS Independent
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
Programming Language :: Python :: 3.10
[options]
packages = find:
python_requires = >=3.6
include_package_data = True
zip_safe = False
tests_require = django-friendship[test]
[options.extras_require]
test =
black==21.7b0
pytest
pytest-django
pytest-cov
pytest-pythonpath
factory-boy
[bdist_wheel]
universal = 1
[flake8]
ignore = E203, E501, W503
select = C,E,F,W,B,B950
exclude =
.git,
.tox,
docs,
*migrations*,
max-line-length = 88
[doc8]
ignore-path = .eggs,*.egg-info
max-line-length = 88
[isort]
line_length = 88
multi_line_output = 3
sections = FUTURE,STDLIB,THIRDPARTY,FIRSTPARTY,LOCALFOLDER
use_parentheses = true
include_trailing_comma = true
lines_between_types = 1