-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·31 lines (27 loc) · 1.08 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
#!/usr/bin/python
import os
from distutils.core import setup
import timeparser
VERSION = timeparser.__version__
setup(
name = "timeparser",
version = VERSION,
author = "Thomas Leichtfuss",
author_email = "[email protected]",
url = "https://github.com/thomst/timeparser",
download_url = "https://pypi.python.org/packages/source/t/timeparser/timeparser-{version}.tar.gz".format(version=VERSION),
description = 'A python-module to parse strings to time-, date-, datetime- or timedelta-objects.',
long_description = open('README.rst').read() if os.path.isfile('README.rst') else str(),
py_modules = ["timeparser"],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2.7',
],
license='GPL',
keywords='parser parse datetime time strings',
)