-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
37 lines (30 loc) · 1.27 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
from distutils.core import setup
VERSION = '1.0.0'
desc = """Parse human-readable date/time text.
Python 3.+ is required for parsedatetime v1.+
The simple example of how to use parsedatetime is:
import parsedatetime as pdt
cal = pdt.Calendar()
cal.parse("tomorrow")
More detailed examples can be found in the examples/
"""
setup(name='parsedatetime',
version=VERSION,
author='Mike Taylor',
author_email='[email protected]',
url='http://code-bear.com/code/parsedatetime/',
download_url='http://code-bear.com/code/parsedatetime/parsedatetime-%s.tar.gz' % VERSION,
description='Parse human-readable date/time text.',
license='http://www.apache.org/licenses/LICENSE-2.0',
packages=['parsedatetime'],
platforms=['Any'],
long_description=desc,
classifiers=['Development Status :: 4 - Beta',
'Environment :: Library',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Topic :: Text Processing',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)