box-o-sand/one-time-pad/pavement.py

27 lines
575 B
Python
Raw Normal View History

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
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',
description='like so: http://en.wikipedia.org/wiki/One-time_pad',
long_description=README.bytes(),
2009-11-25 22:10:32 +00:00
py_modules=['onetimepad'],
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