-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
48 lines (42 loc) · 836 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[zest.releaser]
current_version = 0.0.1
commit = True
tag = True
python-file-with-version = categories_api/__init__.py
[metadata]
name = django-categories-api
version = attr:categories_api.__version__
description = Django-rest-framework API for django-categories
long_description = file:README.md
long_description_content_type = text/markdown
author = Petr Dlouhý
author_email = petr.dlouhy@email.cz
url = http://github.com/petrdlouhy/django-categories-api
classifiers =
Framework :: Django
[options]
zip_safe = False
include_package_data = True
packages = find:
[options.packages.find]
exclude =
example*
docs
build
include =
categories_api
categories_api.*
[flake8]
ignore = D203,W503,E501
exclude =
.git
.tox
docs
build
dist
doc_src
max-line-length = 119
[darglint]
ignore = DAR402
[bdist_wheel]
universal = 1