1
0
Fork 0
This repository has been archived on 2024-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
SecureSocketService/setup.py
2019-07-15 01:48:02 +02:00

27 lines
758 B
Python

from setuptools import setup, find_packages
def readme():
with open('README.md') as f:
return f.read()
setup(name="SecureSocketService",
version="1.0.0",
description="A socket service with secure connexion",
long_description=readme(),
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.7',
'Topic :: System :: Networking',
],
url="https://github.com/flifloo/SecureSocketService",
author="flifloo",
author_email="flifloo@gmail.com",
license="MIT",
packages=find_packages(),
install_requires=[
'cryptography',
],
zip_safe=False)