-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
executable file
·43 lines (43 loc) · 1.5 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
#!/usr/bin/env python3
from setuptools import setup, find_packages
import pathlib
HERE = pathlib.Path(__file__).parent
def read(path):
return (HERE / path).read_text("utf-8").strip()
install_requires = [
'aiohttp>=3.9.5,<4.0.0',
'aiofiles>=0.0.4',
'pymongo>=4.8.0',
'marshmallow>=2.8,<4', # We have temporary backwards compatibility for 2.X, but also support 3.X
'cryptography>=43.0.0',
'colorama>=0.2',
'click',
'importlib-metadata<4'
]
setup(
name="netunnel",
version='1.0.12',
description='A tool to create network tunnels over HTTP/S written in Python 3',
long_description="\n\n".join((read("README.md"), read("CHANGES.md"))),
long_description_content_type='text/markdown',
author='Claroty Open Source',
author_email='[email protected]',
maintainer='Claroty Open Source',
maintainer_email='[email protected]',
url='https://github.com/claroty/netunnel',
license="Apache 2",
packages=find_packages(exclude=('*test*',)),
install_requires=install_requires,
include_package_data=True,
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
)