forked from maykinmedia/djangorestframework-hal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
86 lines (76 loc) · 1.72 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
83
84
85
86
# setuptools config
# see http://setuptools.readthedocs.io/en/latest/setuptools.html#configuring-setup-using-setup-cfg-files
[metadata]
name = djangorestframework_hal
version = 0.1
description = TODO
long_description = file: README.rst
url = https://github.com/maykinmedia/djangorestframework_hal
license = MIT
author = Maykin Media
author_email = [email protected]
keywords = TODO
classifiers =
Development Status :: 3 - Alpha
Framework :: Django
Framework :: Django :: 1.11
Framework :: Django :: 2.0
Framework :: Django :: 2.1
Intended Audience :: Developers
Operating System :: Unix
Operating System :: MacOS
Operating System :: Microsoft :: Windows
Programming Language :: Python :: 3.6
Topic :: Software Development :: Libraries :: Python Modules
[options]
zip_safe = False
include_package_data = True
packages = find:
install_requires =
django
djangorestframework
tests_require =
pytest
pytest-django
tox
isort
drf-flex-fields
[options.extras_require]
tests =
pytest
pytest-django
tox
isort
pep8 = flake8
coverage = pytest-cov
docs =
sphinx
sphinx-rtd-theme
release = zest.releaser
# 3rd party configuration
[aliases]
test=pytest
[bdist_wheel]
universal = 1
[isort]
combine_as_imports = true
default_section = THIRDPARTY
include_trailing_comma = false
line_length = 79
multi_line_output = 5
skip = env,.tox,.history,.eggs
; skip_glob =
not_skip = __init__.py
known_django=django
known_first_party=djangorestframework_hal
sections=FUTURE,STDLIB,DJANGO,THIRDPARTY,FIRSTPARTY,LOCALFOLDER
[tool:pytest]
testpaths = tests
[pep8]
max-line-length=79
exclude=env,.tox,doc
[flake8]
max-line-length=79
exclude=env,.tox,doc
[zest.releaser]
create-wheel = yes