You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
575 B

from paver.easy import *
from paver.setuputils import setup
README = path.getcwd()/'README'
SETUP_ARGS = Bunch(
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(),
py_modules=['onetimepad'],
license='MIT',
platforms=['any'],
)
setup(**SETUP_ARGS)
@task
@needs(['generate_setup', 'minilib', 'setuptools.command.sdist'])
def sdist():
pass