add fullscreen mode for client
This commit is contained in:
16
setup.py
16
setup.py
@@ -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',
|
||||
|
||||
Reference in New Issue
Block a user