forked from jeffreystarr/dateinfer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
22 lines (21 loc) · 974 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
from distutils.core import setup
setup(name='dateinfer',
version='0.2.0',
description='Infers date format from examples',
long_description="""Uses a series of pattern matching and rewriting rules to compute a "best guess" datetime.strptime format string give a list of example date strings.""",
author='Jeffrey Starr',
author_email='jeffrey.starr@ztoztechnologies.com',
url='https://github.com/jeffreystarr/dateinfer',
packages=['dateinfer'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules',
],
install_requires=['pytz']
)