Skip to content

Commit da68e02

Browse files
committed
release fixes + available on pypi
1 parent 1c160d5 commit da68e02

File tree

5 files changed

+13
-2
lines changed

5 files changed

+13
-2
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,5 @@ __pycache__
55
*.egg-info
66
venv
77
htmlcov
8+
build
9+
dist

django_auto_logout/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.1.0'
1+
__version__ = '0.1.1'

requirements-dev.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
-r requirements.txt
2+
build>=0.7.0
13
coverage>=6.0.2
2-
Django>=3.2.8
34
tox>=3.24.4

requirements.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
11
Django>=3.0.0
2+
setuptools>=42.0.0
3+
wheel>=0.30.0

setup.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ def read(file_name):
1212

1313
requires = [
1414
'django',
15+
'setuptools',
16+
'wheel',
1517
]
1618
tests_require = requires + [
1719
'coverage',
@@ -32,9 +34,13 @@ def read(file_name):
3234
classifiers=[
3335
'Development Status :: 5 - Production/Stable',
3436
'Framework :: Django',
37+
'Framework :: Django :: 3.0',
38+
'Framework :: Django :: 3.1',
3539
'Framework :: Django :: 3.2',
3640
'Intended Audience :: Developers',
3741
'License :: OSI Approved :: BSD License',
42+
'Programming Language :: Python :: 3.7',
43+
'Programming Language :: Python :: 3.8',
3844
'Programming Language :: Python :: 3.9',
3945
'Programming Language :: Python :: 3.10',
4046
],

0 commit comments

Comments
 (0)