forked from datopian/flexidate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (33 loc) · 1.11 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
from setuptools import setup
try:
__long_description__ = open('README.rst').read()
except:
__long_description__ = ''
setup(
name='flexidate',
version=1.2,
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>=1.0,<1.99',
'python-dateutil>=2.5',
],
packages=['flexidate'],
zip_safe=False,
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Software Development :: Libraries :: Python Modules'
],
)