pyhumandate/setup.py
2018-01-14 14:54:25 +03:30

14 lines
468 B
Python

from distutils.core import setup
setup(
name = 'humandate',
packages = ['humandate'],
version = '0.5',
description = 'Parse human-readable dates',
author = 'Mahdi Dibaiee',
author_email = 'mdibaiee@aol.com',
url = 'https://github.com/mdibaiee/pyhumandate',
download_url = 'https://github.com/mdibaiee/pyhumandate/archive/master.tar.gz',
keywords = ['date', 'parsing', 'parser', 'time', 'datetime', 'human'],
classifiers = [],
)