13 lines
275 B
Python
13 lines
275 B
Python
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()
|
|
)
|