-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
45 lines (39 loc) · 1.53 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
from setuptools import setup, find_packages
import sys
if sys.version_info < (3, 7):
sys.exit('Sorry, Python < 3.7 is not supported, upgrade your python installation to use tlspyo.')
with open("README.md", "r") as fh:
long_description = fh.read()
setup(name='tlspyo',
packages=[package for package in find_packages()],
version='0.3.0',
download_url='https://github.com/MISTLab/tls-python-object/archive/refs/tags/v0.3.0.tar.gz',
license='MIT',
description='Secure transport of python objects using TLS encryption',
long_description=long_description,
long_description_content_type="text/markdown",
author='Yann Bouteiller, Milo Sobral',
url='https://github.com/MISTLab/tls-python-object',
keywords=['python', 'tls', 'ssl', 'pickle', 'transfer', 'object', 'transport', 'twisted'],
install_requires=[
'twisted',
'pyOpenSSL>22.1.0',
'service_identity',
'platformdirs'
],
extras_requires={
"dev": ['pytest', 'pytest-timeout']
},
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Information Technology',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Python',
'Topic :: Utilities',
],
)