pyhumandate/setup.py

14 lines
468 B
Python
Raw Normal View History

2018-01-14 10:59:46 +00:00
from distutils.core import setup
setup(
name = 'humandate',
packages = ['humandate'],
2018-01-14 11:24:25 +00:00
version = '0.5',
2018-01-14 10:59:46 +00:00
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 = [],
)