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

28 lines
763 B
Python
Raw Normal View History

2019-07-15 01:48:02 +02:00
from setuptools import setup, find_packages
def readme():
with open('README.md') as f:
return f.read()
setup(name="SecureSocketService",
version="1.1.4",
2019-07-15 01:48:02 +02:00
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','ssl'
2019-07-15 01:48:02 +02:00
],
zip_safe=False)