From bb9483e7e1518779304c12cc2a0b1b212219d59b Mon Sep 17 00:00:00 2001 From: speyrefitte Date: Fri, 13 Mar 2015 10:38:26 +0100 Subject: [PATCH] update setup.py --- setup.py | 16 +++++----------- 1 file changed, 5 insertions(+), 11 deletions(-) diff --git a/setup.py b/setup.py index 7295ea9..b057d5e 100644 --- a/setup.py +++ b/setup.py @@ -4,20 +4,12 @@ import setuptools from distutils.core import setup, Extension setup(name='rdpy', - version='1.2.2', + version='1.3.0', description='Remote Desktop Protocol in Python', long_description=""" - RDPY is a pure Python implementation of the Microsoft RDP (Remote Desktop Protocol) protocol (Client and Server side). - RDPY is built over the event driven network engine Twisted. + RDPY is a pure Python implementation of the Microsoft RDP (Remote Desktop Protocol) protocol (Client and Server side). RDPY is built over the event driven network engine Twisted. - RDPY provide RDP and VNC binaries : - - RDP Man In The Middle proxy which record session - - RDP Honeypot - - RDP screenshoter - - RDP client - - VNC client - - VNC screenshoter - - RSS Player + RDPY provide RDP and VNC binaries : RDP Man In The Middle proxy which record session, RDP Honeypot, RDP screenshoter, RDP client, VNC client, VNC screenshoter, RSS Player """, author='Sylvain Peyrefitte', author_email='citronneur@gmail.com', @@ -29,6 +21,8 @@ setup(name='rdpy', 'rdpy.protocol', 'rdpy.protocol.rdp', 'rdpy.protocol.rdp.pdu', + 'rdpy.protocol.rdp.nla', + 'rdpy.protocol.rdp.t125', 'rdpy.protocol.rfb', 'rdpy.ui' ],