forked from Hipo/django-timestamp-paginator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (27 loc) · 1.19 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
from distutils.core import setup
setup(
name='django-timestamp-paginator',
version='0.0.2',
description='Timestamp Paginator for Django.',
packages=['django_timestamp_paginator', ],
license='see licence on https://github.com/umutbozkurt/django-timestamp-paginator',
long_description='see https://github.com/umutbozkurt/django-timestamp-paginator/blob/master/README.md',
url='https://github.com/umutbozkurt/django-timestamp-paginator',
download_url='https://github.com/umutbozkurt/django-timestamp-paginator/releases/',
keywords=['django', 'timestamp', 'paginator'],
author='Umut Bozkurt',
author_email='[email protected]',
requires=['django', ],
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Testing',
'Topic :: Internet',
'Topic :: Internet :: WWW/HTTP :: Site Management',
'Topic :: Text Processing :: Markup :: HTML',
'Intended Audience :: Developers'
],
)