-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
50 lines (43 loc) · 1.31 KB
/
setup.py
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
#!/usr/bin/env python
import os
from setuptools import setup, find_packages
from django_auto_logout import __version__
def read(file_name):
return open(os.path.join(os.path.dirname(__file__), file_name)).read()
requires = [
'django',
'setuptools',
'wheel',
]
tests_require = requires + [
'coverage',
'tox',
]
setup(
name='django-auto-logout',
version=__version__,
author='Georgy Bazhukov',
author_email='georgy.bazhukov@gmail.com',
description='Auto logout a user after specific time in Django',
long_description=read('README.rst'),
long_description_content_type='text/x-rst',
url='https://github.com/bugov/django-auto-logout',
packages=find_packages(),
include_package_data=True,
license="BSD",
classifiers=[
'Development Status :: 5 - Production/Stable',
'Framework :: Django',
'Framework :: Django :: 3.0',
'Framework :: Django :: 3.1',
'Framework :: Django :: 3.2',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
requires=requires,
tests_require=tests_require,
)