forked from iAmPlus/timestring
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (30 loc) · 1.41 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
#!/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 :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"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='steve@stevepeak.net',
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"],
entry_points={'console_scripts': ['timestring=timestring:main']})