-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
57 lines (51 loc) · 1.42 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
[metadata]
name = terraso-allauth
description = A Django app to plug Terraso as a provider to django-allauth.
long_description = file: README.md
long_description_content_type = text/markdown
url = https://www.github.com/techmatters/terraso-allauth
project_urls =
Bug Tracker = https://www.github.com/techmatters/terraso-allauth/issues
author = Terraso Developers
author_email = info@terraso.org
license = AGPL-3
classifiers =
Environment :: Web Environment
Framework :: Django
Intended Audience :: Developers
License :: OSI Approved :: GNU Affero General Public License v3
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Topic :: Internet :: WWW/HTTP
Topic :: Internet :: WWW/HTTP :: Dynamic Content
[options]
packages = find:
python_requires = >=3.8
[options.packages.find]
exclude =
tests
tests.*
[flake8]
max-line-length = 100
extend-ignore = E203
[tool:pytest]
django_find_project = false
DJANGO_SETTINGS_MODULE=tests.settings
pythonpath = . terraso_allauth
python_files = tests.py test_*.py *_tests.py
addopts = --nomigrations
[coverage:run]
source = .
omit =
*/migrations/*
*/tests/*
*/test_*.py
.tox
[coverage:report]
ignore_errors = True
show_missing = True