-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
32 lines (28 loc) · 1.03 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
with open('README.rst') as f:
readme = f.read()
setup(
name='django-session-cleanup',
version='4.0.0',
description=('A periodic task for removing expired Django sessions '
'with Celery.'),
long_description=readme,
author='Elijah Rutschman',
author_email='[email protected]',
maintainer='Martey Dodoo',
maintainer_email='[email protected]',
url='https://github.com/mobolic/django-session-cleanup',
classifiers=[
'Framework :: Django :: 2.2',
'Framework :: Django :: 3.0',
'Framework :: Django :: 3.1',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
packages=find_packages(exclude=('tests',))
)