2009-11-25 22:10:32 +00:00
|
|
|
import sys
|
|
|
|
from distutils.core import setup
|
|
|
|
|
|
|
|
|
|
|
|
SETUP_ARGS = dict(
|
|
|
|
name='OneTimePad',
|
|
|
|
version='0.1.0',
|
|
|
|
author='Dan Buch',
|
|
|
|
author_email='daniel.buch@gmail.com',
|
|
|
|
url='http://github.com/meatballhat/OneTimePad',
|
|
|
|
description='one-time pad cryptosystem described in "Cryptonomicon"',
|
|
|
|
long_description='',
|
|
|
|
py_modules=['onetimepad'],
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
def main():
|
|
|
|
setup(**SETUP_ARGS)
|
|
|
|
return 0
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
sys.exit(main())
|