diff --git a/LICENSE.txt b/LICENSE.txt new file mode 100644 index 0000000..3afd010 --- /dev/null +++ b/LICENSE.txt @@ -0,0 +1,19 @@ + DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE + Version 2, December 2004 + + Copyright (C) 2004 Sam Hocevar + + Everyone is permitted to copy and distribute verbatim or modified + copies of this license document, and changing it is allowed as long + as the name is changed. + + DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. You just DO WHAT THE FUCK YOU WANT TO. + + * This program is free software. It comes without any warranty, to + * the extent permitted by applicable law. You can redistribute it + * and/or modify it under the terms of the Do What The Fuck You Want + * To Public License, Version 2, as published by Sam Hocevar. See + * http://www.wtfpl.net/ for more details. diff --git a/humblematch/docs/Tutorial.md b/docs/Tutorial.md similarity index 100% rename from humblematch/docs/Tutorial.md rename to docs/Tutorial.md diff --git a/humblematch/docs/img/2015-06-21-1319.jpg b/docs/img/2015-06-21-1319.jpg similarity index 100% rename from humblematch/docs/img/2015-06-21-1319.jpg rename to docs/img/2015-06-21-1319.jpg diff --git a/humblematch/docs/img/stick_edited.png b/docs/img/stick_edited.png similarity index 100% rename from humblematch/docs/img/stick_edited.png rename to docs/img/stick_edited.png diff --git a/humblematch/docs/img/stick_edited.xcf b/docs/img/stick_edited.xcf similarity index 100% rename from humblematch/docs/img/stick_edited.xcf rename to docs/img/stick_edited.xcf diff --git a/humblematch/docs/img/stick_edited_2.jpg b/docs/img/stick_edited_2.jpg similarity index 100% rename from humblematch/docs/img/stick_edited_2.jpg rename to docs/img/stick_edited_2.jpg diff --git a/humblematch/docs/img/stick_edited_2.png b/docs/img/stick_edited_2.png similarity index 100% rename from humblematch/docs/img/stick_edited_2.png rename to docs/img/stick_edited_2.png diff --git a/humblematch/docs/img/stick_edited_2.xcf b/docs/img/stick_edited_2.xcf similarity index 100% rename from humblematch/docs/img/stick_edited_2.xcf rename to docs/img/stick_edited_2.xcf diff --git a/humblematch/docs/index.md b/docs/index.md similarity index 100% rename from humblematch/docs/index.md rename to docs/index.md diff --git a/humblematch/__init__.py b/humblematch/__init__.py new file mode 100644 index 0000000..9097751 --- /dev/null +++ b/humblematch/__init__.py @@ -0,0 +1 @@ +from wrap_obj import * diff --git a/humblematch/wrap_obj.pyc b/humblematch/wrap_obj.pyc index ceb92b0..ba7cad6 100644 Binary files a/humblematch/wrap_obj.pyc and b/humblematch/wrap_obj.pyc differ diff --git a/humblematch/mkdocs.yml b/mkdocs.yml similarity index 100% rename from humblematch/mkdocs.yml rename to mkdocs.yml diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..578ede1 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,2 @@ +[metadata] +description-file = README diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..6a96742 --- /dev/null +++ b/setup.py @@ -0,0 +1,14 @@ +from distutils.core import setup + +setup( + name='humblematch', + packages=['humblematch'], # this must be the same as the name above + version='0.1.dev1', + description='Will Sanitize your type-checks and duck-checks for you', + author='bendtherules', + author_email='bendtherules@codesp.in', + url='https://github.com/bendtherules/humblematch', # use the URL to the github repo + download_url='https://github.com/bendtherules/humblematch/tarball/0.1.dev1', # I'll explain this in a second + keywords=['type-checking', 'testing', 'assert'], # arbitrary keywords + classifiers=['Development Status :: 3 - Alpha', ], +)