forked from subhranath/django-session-idle-timeout
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
39 lines (38 loc) · 1.41 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
from setuptools import setup, find_packages
setup(
name = "django-session-idle-timeout",
install_requires = [
'Django',
],
packages = find_packages(),
include_package_data=True,
version = "1.4.2",
description = "Timeout a logged user after a period of time",
long_description=open('README.md').read(-1),
author = "Tomas Zulberti",
zip_safe = False,
author_email = "[email protected]",
url = "http://github.com/tzulberti/django-session-idle-timeout",
keywords = [
"django contrib",
"session login expiration"
],
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Framework :: Django',
'Programming Language :: Python',
'Programming Language :: Python :: 2.4',
'Programming Language :: Python :: 2.5',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Internet :: WWW/HTTP :: WSGI',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Environment :: Web Environment',
'Operating System :: OS Independent'
],
license = 'License :: OSI Approved :: BSD License',
)