sm
/
omb
1
0
Fork 0

initial module state

Esse commit está contido em:
Stephen McQuay 2012-09-12 23:32:28 -06:00
commit 4700222910
5 arquivos alterados com 22 adições e 0 exclusões

4
.gitignore externo Normal file
Ver arquivo

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

1
LICENSE.txt Normal file
Ver arquivo

@ -0,0 +1 @@
WTFPL

1
README.txt Normal file
Ver arquivo

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

4
omb/__init__.py Normal file
Ver arquivo

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

12
setup.py Normal file
Ver arquivo

@ -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()
)