forked from FFM/pycryptopan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
15 lines (15 loc) · 785 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
from distutils.core import setup
f=open("README")
setup(name='pycryptopan', version='0.01f',
py_modules=['cryptopan'],
install_requires=['pycrypto'],
requires=['pycrypto'],
url="https://github.com/aaronkaplan/pycryptopan",
author="Aaron Kaplan",
author_email="[email protected]",
description="""A python implementation of Crypto-PAn
a ip anonymization algorithm. Original first author: Michael Bauer ([email protected]).
Aaron Kaplan (second author, [email protected]) is continuing the work when needed.
Mihi R.I.P. Your code remembers you on the Internet.""",
long_description="\n".join(f)
)