initial module state

This commit is contained in:
sm
2012-09-12 23:32:28 -06:00
commit 4700222910
5 changed files with 22 additions and 0 deletions
+4
View File
@@ -0,0 +1,4 @@
MANIFEST
build
dist
*.pyc
+1
View File
@@ -0,0 +1 @@
WTFPL
+1
View File
@@ -0,0 +1 @@
Test project to learn about python packaging
+4
View File
@@ -0,0 +1,4 @@
__version__ = '0.1dev'
def foo():
return u'bar'
+12
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()
)