Semi-finalized directory structure
@@ -0,0 +1,19 @@
|
||||
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
|
||||
Version 2, December 2004
|
||||
|
||||
Copyright (C) 2004 Sam Hocevar <sam@hocevar.net>
|
||||
|
||||
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.
|
||||
|
Before Width: | Height: | Size: 1.1 MiB After Width: | Height: | Size: 1.1 MiB |
|
Before Width: | Height: | Size: 126 KiB After Width: | Height: | Size: 126 KiB |
|
Before Width: | Height: | Size: 58 KiB After Width: | Height: | Size: 58 KiB |
|
Before Width: | Height: | Size: 521 KiB After Width: | Height: | Size: 521 KiB |
@@ -0,0 +1 @@
|
||||
from wrap_obj import *
|
||||
@@ -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', ],
|
||||
)
|
||||