pyhumandate/setup.py
2018-03-27 15:11:05 +04:30

14 lines
468 B
Python

from distutils.core import setup
setup(
name = 'humandate',
packages = ['humandate'],
version = '0.8',
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 = [],
)