initial module state

This commit is contained in:
Stephen McQuay 2012-09-12 23:32:28 -06:00
commit 4700222910
5 changed files with 22 additions and 0 deletions

4
.gitignore vendored Normal file
View File

@ -0,0 +1,4 @@
MANIFEST
build
dist
*.pyc

1
LICENSE.txt Normal file
View File

@ -0,0 +1 @@
WTFPL

1
README.txt Normal file
View File

@ -0,0 +1 @@
Test project to learn about python packaging

4
omb/__init__.py Normal file
View File

@ -0,0 +1,4 @@
__version__ = '0.1dev'
def foo():
return u'bar'

12
setup.py Normal file
View File

@ -0,0 +1,12 @@
from distutils.core import setup
setup(
name="OMB",
version="0.1dev",
packages=['omb', ],
license='WTFPL',
url='http://github.com/smcquay/omb',
author='Stephen McQuay',
author_email='stephen@mcquay.me',
descripton=open('README.txt').read()
)