add fullscreen mode for client

This commit is contained in:
citronneur
2014-11-29 19:00:14 +01:00
parent 5af9f0708a
commit 3c3d7423a5
7 changed files with 44 additions and 30 deletions

View File

@@ -4,8 +4,12 @@ import setuptools
from distutils.core import setup, Extension
setup(name='rdpy',
version='1.0.1',
version='1.1.0',
description='Remote Desktop Protocol in Python',
long_description="""
RDPY is a pure Python implementation of the Microsoft RDP (Remote Desktop Protocol) protocol.
RDPY is built over the event driven network engine Twisted.
""",
author='Sylvain Peyrefitte',
author_email='citronneur@gmail.com',
url='https://github.com/citronneur/rdpy',
@@ -21,11 +25,11 @@ setup(name='rdpy',
],
ext_modules=[Extension('rle', ['ext/rle.c'])],
scripts = [
'bin/rdpy-rdpclient',
'bin/rdpy-rdpproxy',
'bin/rdpy-rdpscreenshot',
'bin/rdpy-vncclient',
'bin/rdpy-vncscreenshot'
'bin/rdpy-rdpclient.py',
'bin/rdpy-rdpproxy.py',
'bin/rdpy-rdpscreenshot.py',
'bin/rdpy-vncclient.py',
'bin/rdpy-vncscreenshot.py'
],
install_requires=[
'twisted',