1
1
[bumpversion]
2
- current_version = 0.7.3
2
+ current_version = 0.8.0
3
3
commit = True
4
4
tag = True
5
5
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)
6
- serialize =
6
+ serialize =
7
7
{major}.{minor}.{patch}
8
8
9
9
[metadata]
@@ -16,49 +16,49 @@ description-file = README.md
16
16
long-description = file:README.md
17
17
long-description-content-type = text/markdown; charset=UTF-8
18
18
url = https://github.com/apragacz/django-rest-registration
19
- project-urls =
20
- Bug Tracker = https://github.com/apragacz/django-rest-registration/issues
21
- Documentation = https://django-rest-registration.readthedocs.io/
22
- Source Code = https://github.com/apragacz/django-rest-registration
23
- keywords =
24
- django
25
- rest
26
- api
27
- auth
28
- rest-framework
29
- registration
30
- register
31
- login
32
- reset-password
33
- register-email
34
- change-email
35
- sign-up
36
- sign-in
19
+ project-urls =
20
+ Bug Tracker = https://github.com/apragacz/django-rest-registration/issues
21
+ Documentation = https://django-rest-registration.readthedocs.io/
22
+ Source Code = https://github.com/apragacz/django-rest-registration
23
+ keywords =
24
+ django
25
+ rest
26
+ api
27
+ auth
28
+ rest-framework
29
+ registration
30
+ register
31
+ login
32
+ reset-password
33
+ register-email
34
+ change-email
35
+ sign-up
36
+ sign-in
37
37
license = MIT
38
38
license-file = LICENSE
39
- classifiers =
40
- Development Status :: 4 - Beta
41
- Environment :: Web Environment
42
- Framework :: Django
43
- Framework :: Django :: 2.0
44
- Framework :: Django :: 3.0
45
- Framework :: Django :: 4.0
46
- Intended Audience :: Developers
47
- License :: OSI Approved :: MIT License
48
- Operating System :: POSIX
49
- Operating System :: POSIX :: Linux
50
- Programming Language :: Python
51
- Programming Language :: Python :: 3
52
- Programming Language :: Python :: 3 :: Only
53
- Topic :: Internet
54
- Topic :: Internet :: WWW/HTTP
39
+ classifiers =
40
+ Development Status :: 4 - Beta
41
+ Environment :: Web Environment
42
+ Framework :: Django
43
+ Framework :: Django :: 2.0
44
+ Framework :: Django :: 3.0
45
+ Framework :: Django :: 4.0
46
+ Intended Audience :: Developers
47
+ License :: OSI Approved :: MIT License
48
+ Operating System :: POSIX
49
+ Operating System :: POSIX :: Linux
50
+ Programming Language :: Python
51
+ Programming Language :: Python :: 3
52
+ Programming Language :: Python :: 3 :: Only
53
+ Topic :: Internet
54
+ Topic :: Internet :: WWW/HTTP
55
55
56
56
[options]
57
57
include_package_data = True
58
58
python_requires = >=3.5
59
- install_requires =
60
- Django>=2.0
61
- djangorestframework>=3.3
59
+ install_requires =
60
+ Django>=2.0
61
+ djangorestframework>=3.3
62
62
63
63
[isort]
64
64
line_length = 88
@@ -78,22 +78,22 @@ const-rgx = ([a-z_][a-z0-9_]{3,30}|[A-Z_][A-Z0-9_]{3,30})
78
78
good-names = i, j, k, db
79
79
min-public-methods = 0
80
80
max-args = 6
81
- disable =
82
- missing-docstring,
83
- unused-argument,
84
- unused-import,
85
- line-too-long,
86
- ungrouped-imports,
87
- fixme,
88
- consider-using-f-string,
81
+ disable =
82
+ missing-docstring,
83
+ unused-argument,
84
+ unused-import,
85
+ line-too-long,
86
+ ungrouped-imports,
87
+ fixme,
88
+ consider-using-f-string,
89
89
score = no
90
- generated-members =
91
- objects
92
- from_queryset
93
- __setattr__
94
- DoesNotExist
95
- Meta
96
- _meta
90
+ generated-members =
91
+ objects
92
+ from_queryset
93
+ __setattr__
94
+ DoesNotExist
95
+ Meta
96
+ _meta
97
97
98
98
[pylint:similarities]
99
99
min-similarity-lines = 5
@@ -103,9 +103,9 @@ ignore-imports = yes
103
103
max-parents = 10
104
104
105
105
[mypy]
106
- plugins =
107
- mypy_django_plugin.main,
108
- mypy_drf_plugin.main
106
+ plugins =
107
+ mypy_django_plugin.main,
108
+ mypy_drf_plugin.main
109
109
110
110
[mypy.plugins.django-stubs]
111
111
django_settings_module = tests.default_settings
@@ -114,31 +114,26 @@ django_settings_module = tests.default_settings
114
114
DJANGO_SETTINGS_MODULE = tests.default_settings
115
115
django_find_project = false
116
116
addopts = --doctest-modules
117
- testpaths =
118
- tests
119
- rest_registration
117
+ testpaths =
118
+ tests
119
+ rest_registration
120
120
121
121
[coverage:run]
122
122
branch = True
123
- source =
124
- rest_registration
123
+ source =
124
+ rest_registration
125
125
126
126
[coverage:report]
127
- exclude_lines =
128
- # Have to re-enable the standard pragma
129
- pragma: no cover
130
-
131
- # Don't complain about missing debug-only code:
132
- def __repr__
133
-
134
- # Don't complain if tests don't hit defensive assertion code:
135
- raise AssertionError
136
- raise NotImplementedError
137
-
138
- # Don't complain if non-runnable code isn't run:
139
- if __name__ == .__main__.:
140
- if TYPE_CHECKING:
141
-
127
+ exclude_lines =
128
+ pragma: no cover
129
+
130
+ def __repr__
131
+
132
+ raise AssertionError
133
+ raise NotImplementedError
134
+
135
+ if __name__ == .__main__.:
136
+ if TYPE_CHECKING:
142
137
ignore_errors = True
143
138
144
139
[coverage:html]
0 commit comments