-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
executable file
·39 lines (36 loc) · 939 Bytes
/
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
#!/usr/bin/env python
from setuptools import setup
setup(
name="VNCAuthProxy",
version="1.2.0",
python_requires='<3.0',
packages=[
"twisted.plugins",
"vncap",
"vncap.vnc",
"vncap.ssh"
],
install_requires=[
"Twisted>=10.2.0,<20.4.0",
"txWS==0.9.1",
"pyopenssl<22.0.0",
# Set ceilings which still support python2 for dependencies
"cryptography<3.4",
"idna<3.0",
"pyasn1",
"PyHamcrest<2.0",
"service-identity",
"typing<3.10",
],
author="Corbin Simpson, OSU Open Source Lab",
author_email="[email protected], [email protected]",
description="A Twisted-based VNC proxy",
license="GPL2",
url="https://github.com/osuosl/twisted_vncauthproxy",
)
# Regenerate Twisted plugin cache.
try:
from twisted.plugin import getPlugins, IPlugin
list(getPlugins(IPlugin))
except:
pass