master
Бородин Роман 2019-04-17 13:55:12 +03:00
parent 2f740f4236
commit 3ca8b6db01
1 changed files with 9 additions and 2 deletions

View File

@ -1,5 +1,12 @@
#!/usr/bin/env python3
from distutils.core import setup
setup(name='eudp',
version='1.0',
py_modules=['eudp'],
)
description='Stream Socket over UDP with optional asymmetric encryption by RSA key-pairs',
author='Roman Borodin',
author_email='roman@ukamnya.ru',
url='https://git.ukamnya.ru/ukamnya/eudp',
packages=['eudp'],
)