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.
box-o-sand/setup.py

24 lines
455 B

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='like so: http://en.wikipedia.org/wiki/One-time_pad',
long_description='',
py_modules=['onetimepad'],
)
def main():
setup(**SETUP_ARGS)
return 0
if __name__ == '__main__':
sys.exit(main())