forked from dracos/django-date-extensions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (26 loc) · 1002 Bytes
/
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
from setuptools import setup
setup(
name='django_date_extensions',
version='2.0',
url='https://github.com/dracos/django-date-extensions',
packages=['django_date_extensions',],
license='BSD',
description="This code adds a few small extensions to Django's DateField, to handle both approximate dates (e.g. 'March 1963') and default year dates (e.g. assume '24th June' is the most recent such).",
long_description=open('README.txt').read(),
author='Matthew Somerville',
author_email='[email protected]',
requires=[
'Django',
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'License :: OSI Approved :: BSD License',
'Intended Audience :: Developers',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Topic :: Database',
'Topic :: Internet :: WWW/HTTP',
],
)