diff --git a/MANIFEST b/MANIFEST new file mode 100644 index 0000000..2cabea4 --- /dev/null +++ b/MANIFEST @@ -0,0 +1,6 @@ +# file GENERATED by distutils, do NOT edit +setup.cfg +setup.py +humandate/__init__.py +humandate/index.py +humandate/tests.py diff --git a/README.md b/README.md new file mode 100644 index 0000000..e69de29 diff --git a/humandate/__init__.py b/humandate/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/index.py b/humandate/index.py similarity index 100% rename from index.py rename to humandate/index.py diff --git a/tests.py b/humandate/tests.py similarity index 100% rename from tests.py rename to humandate/tests.py diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..b88034e --- /dev/null +++ b/setup.cfg @@ -0,0 +1,2 @@ +[metadata] +description-file = README.md diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..e0f3723 --- /dev/null +++ b/setup.py @@ -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 = [], +)