2009-11-28 19:16:01 +00:00
|
|
|
from paver.easy import *
|
|
|
|
from paver.setuputils import setup
|
2009-11-25 22:10:32 +00:00
|
|
|
|
|
|
|
|
2009-11-28 19:19:54 +00:00
|
|
|
README = path.getcwd()/'README'
|
2009-11-28 19:16:01 +00:00
|
|
|
SETUP_ARGS = Bunch(
|
2009-11-25 22:10:32 +00:00
|
|
|
name='OneTimePad',
|
|
|
|
version='0.1.0',
|
|
|
|
author='Dan Buch',
|
|
|
|
author_email='daniel.buch@gmail.com',
|
|
|
|
url='http://github.com/meatballhat/OneTimePad',
|
2009-11-28 04:23:45 +00:00
|
|
|
description='like so: http://en.wikipedia.org/wiki/One-time_pad',
|
2009-11-28 19:19:54 +00:00
|
|
|
long_description=README.bytes(),
|
2009-11-25 22:10:32 +00:00
|
|
|
py_modules=['onetimepad'],
|
2009-11-28 19:19:54 +00:00
|
|
|
license='MIT',
|
|
|
|
platforms=['any'],
|
2009-11-25 22:10:32 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
|
2009-11-28 19:16:01 +00:00
|
|
|
setup(**SETUP_ARGS)
|
2009-11-25 22:10:32 +00:00
|
|
|
|
|
|
|
|
2009-11-28 19:16:01 +00:00
|
|
|
@task
|
|
|
|
@needs(['generate_setup', 'minilib', 'setuptools.command.sdist'])
|
|
|
|
def sdist():
|
|
|
|
pass
|