-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.cfg
30 lines (27 loc) · 941 Bytes
/
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
[metadata]
name = django_qserializer
version = 0.2.8
url = https://github.com/buserbrasil/django-qserializer
license = MIT
author = Iuri de Silvio
author_email = [email protected]
description = Django queryset and serialization together
long_description = file: README.md
long_description_content_type = text/markdown
classifiers =
Development Status :: 3 - Alpha
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Framework :: Django
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Topic :: Software Development :: Libraries :: Python Modules
[tool:pytest]
DJANGO_SETTINGS_MODULE=django_qserializer.tests.testapp.settings
addopts = --nomigrations --cov=django_qserializer --cov-report html --cov-report term --flake8
python_files = tests.py test_*.py *_tests.py
[flake8]
max-line-length = 100
[aliases]
test=pytest