forked from datopian/flexidate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (29 loc) · 934 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
28
29
30
31
from setuptools import setup
try:
__long_description__ = open('README.rst').read()
except:
__long_description__ = ''
setup(
name='flexidate',
version=1.0,
license='MIT',
description='Very flexible date parsing and normalization utilities',
long_description=__long_description__,
author='Open Knowledge Foundation',
author_email='[email protected]',
url='http://github.com/okfn/flexidate/',
install_requires=[
# python-dateutil 2.0 has different _parse method, so stick to 1.4.1
'python-dateutil',
],
packages=['flexidate'],
zip_safe=False,
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules'
],
)