filling in more crap for paver-i-fication

This commit is contained in:
Dan Buch 2009-11-28 14:19:54 -05:00
parent 5ca2f9de34
commit 29fbe8e32c
2 changed files with 7 additions and 1 deletions

3
README Normal file
View File

@ -0,0 +1,3 @@
Sure, they aren't especially practical, but one-time pads are academically interesting :)
.. vim:filetype=rst

View File

@ -2,6 +2,7 @@ from paver.easy import *
from paver.setuputils import setup
README = path.getcwd()/'README'
SETUP_ARGS = Bunch(
name='OneTimePad',
version='0.1.0',
@ -9,8 +10,10 @@ SETUP_ARGS = Bunch(
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='',
long_description=README.bytes(),
py_modules=['onetimepad'],
license='MIT',
platforms=['any'],
)