-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathsetup.cfg
119 lines (107 loc) · 2.29 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
[bumpversion]
current_version = 1.1.1
commit = True
tag = True
message = [{new_version} Released]
[metadata]
name = django-ulogin
version = 1.1.1
description = User social authentication with ulogin.ru service
long_description = file: README.rst
author = Mikhail Porokhovnichenko
author_email = [email protected]
url = https://github.com/marazmiki/django-ulogin
download_url = https://github.com/marazmiki/django-ulogin/archive/master.zip
license = MIT
license_file = LICENSE
platforms =
OS Independent
classifiers =
Development Status :: 5 - Production/Stable
Environment :: Web Environment
Framework :: Django
Framework :: Django :: 2.2
Framework :: Django :: 3.0
Framework :: Django :: 3.1
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Topic :: Internet :: WWW/HTTP :: Session
[options]
install_requires =
requests
test_suite = tests.main
tests_require =
tox
requests
include_package_data = True
exclude_package_data =
AUTHORS
LICESNSE
docs/*
zip_safe = False
[bdist_wheel]
universal = 1
[bumpversion:file:django_ulogin/__init__.py]
search = __version__ = '{current_version}'
replace = __version__ = '{new_version}'
[bumpversion:file:setup.cfg]
search = version = {current_version}
replace = version = {new_version}
[bumpversion:file:pyproject.toml]
search = version = "{current_version}"
replace = version = "{new_version}"
[tox:tox]
envlist =
py{35,36,37,38}-dj{22}
py{36,37,38}-dj{30,31}
basepython =
py35: python3.5
py36: python3.6
py37: python3.7
py38: python3.8
isolated_build = True
[testenv]
deps =
flake8
coverage
dj22: django>=2.2,<2.3
dj30: django>=3.0,<3.1
dj31: django>=3.1,<3.2
commands =
pip install -e .
coverage run tests.py
coverage report
coverage html
[flake8]
exclude =
.git
.tox
.eggs/
__pycache__
docs
test_project/
[coverage:run]
omit =
.tox/*
.eggs/*
dist/*
[coverage:report]
omit =
.tox/*
.eggs/*
dist/*
[tool:isort]
skip =
.tox/*
line_length = 79
indent = ' '
multi_line_output = 5
length_sort = 1
sections = FUTURE,STDLIB,THIRDPARTY,FIRSTPARTY,LOCALFOLDER