-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.cfg
74 lines (65 loc) · 1.61 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
[bumpversion]
current_version = 2.1.1
commit = True
tag = True
[bumpversion:file:pyproject.toml]
search = version = "{current_version}"
replace = version = "{new_version}"
[bumpversion:file:drf_simple_apikey/version.py]
search = VERSION = "{current_version}"
replace = VERSION = "{new_version}"
[bumpversion:file:CHANGELOG.md]
search =
[Unreleased]
------------
replace =
[Unreleased]
------------
[v{new_version}] - {utcnow:%%Y-%%m-%%d}
------------------
[bdist_wheel]
universal = 1
[metadata]
name = drf-simple-apikey
version = "{current_version}"
url = https://github.com/koladev32/drf-simple-apikey
license = MIT
author = Kolawole Mangabo
author_email = [email protected]
description = API Key authentication and permissions for Django REST.
long_description = file: README.md
long_description_content_type = text/markdown
keyword = django django-rest api-key apikey
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: Implementation :: PyPy
Topic :: Software Development :: Libraries :: Python Modules
[options]
zip_safe = False
include_package_data = True
packages = find:
install_requires =
django >= 4.2
djangorestframework >= 3.14.0
cryptography >= 38.0.4
[options.extras_require]
test =
pytest
coverage
pytest-django
tooling =
black == 22.3.0
pylint
bump2version
[options.packages.find]
exclude =
docs*
tests*
.github*
example*