forked from tzulberti/django-datefilterspec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 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
40
from setuptools import setup, find_packages
setup(
name='django-daterange-filter',
version='1.3.0',
description='Allow to filter by a custom date range on the Django Admin',
long_description=open('README.rst').read(-1),
author='Tomas Zulberti',
author_email='[email protected]',
url='http://github.com/tzulberti/django-datefilterspec',
keywords=[
'django admin',
'django date range',
],
install_requires=[
"Django",
],
packages=find_packages(exclude=['tests']),
include_package_data=True,
zip_safe=False,
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',
)