-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
20 lines (19 loc) · 849 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from distutils.core import setup
from humandt import __version__
setup(name='django-human-datetime',
version=__version__,
description='Uses the parsedatetime package to parse human readable date/time expressions into Django fields',
long_description=open('README.rst').read(),
author='Justin Quick',
author_email='[email protected]',
url='http://github.com/justquick/django-human-datetime',
packages=['humandt'],
requires=['parsedatetime','pytz',],
classifiers=['Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Utilities'],
)