pypi package

This commit is contained in:
Mahdi Dibaiee 2018-01-14 14:29:46 +03:30
parent a1d921915d
commit 0f60c139a9
7 changed files with 21 additions and 0 deletions

6
MANIFEST Normal file
View File

@ -0,0 +1,6 @@
# file GENERATED by distutils, do NOT edit
setup.cfg
setup.py
humandate/__init__.py
humandate/index.py
humandate/tests.py

0
README.md Normal file
View File

0
humandate/__init__.py Normal file
View File

2
setup.cfg Normal file
View File

@ -0,0 +1,2 @@
[metadata]
description-file = README.md

13
setup.py Normal file
View File

@ -0,0 +1,13 @@
from distutils.core import setup
setup(
name = 'humandate',
packages = ['humandate'],
version = '0.1',
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 = [],
)