forked from codecov/timestring
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (27 loc) · 1.25 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
#!/usr/bin/env python
from setuptools import setup
version = '1.6.2'
classifiers = ["Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: Implementation :: PyPy"]
setup(name='timestring',
version=version,
description="Human expressed time to Dates and Ranges",
long_description="""Converting strings of into representable time via Date and Range objects.
Plus features to compare and adjust Dates and Ranges.""",
classifiers=classifiers,
keywords='date time range datetime datestring',
author='@stevepeak',
author_email='[email protected]',
url='http://github.com/stevepeak/timestring',
license='http://www.apache.org/licenses/LICENSE-2.0',
packages=['timestring'],
include_package_data=True,
zip_safe=True,
install_requires=["pytz==2013b"],
entry_points={'console_scripts': ['timestring=timestring:main']})