Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
84a3d7619b | ||
|
|
3e1b8e57eb | ||
|
|
744ff023ed | ||
|
|
bc89e67974 | ||
|
|
55ba109166 |
15
README.md
15
README.md
@@ -12,8 +12,17 @@ RDPY is fully implemented in python, except the bitmap uncompression algorithm w
|
|||||||
|
|
||||||
### Depends
|
### Depends
|
||||||
|
|
||||||
* python2.7
|
#### Linux
|
||||||
* python-qt4
|
|
||||||
|
Exemple from Debian based system :
|
||||||
|
```
|
||||||
|
sudo apt-get install python-qt4
|
||||||
|
```
|
||||||
|
|
||||||
|
#### Windows
|
||||||
|
|
||||||
|
[PyQt4](http://sourceforge.net/projects/pyqt/files/PyQt4/PyQt-4.11.3/PyQt4-4.11.3-gpl-Py2.7-Qt4.8.6-x32.exe)
|
||||||
|
[PyWin32](http://sourceforge.net/projects/pywin32/files/pywin32/Build%20218/pywin32-218.win32-py2.7.exe/download)
|
||||||
|
|
||||||
### Make
|
### Make
|
||||||
|
|
||||||
@@ -28,7 +37,7 @@ Or use PIP:
|
|||||||
$ pip install rdpy
|
$ pip install rdpy
|
||||||
```
|
```
|
||||||
|
|
||||||
For virtualenv, tou need to link qt4 library to it:
|
For virtualenv, you need to link qt4 library to it:
|
||||||
```
|
```
|
||||||
$ ln -s /usr/lib/python2.7/dist-packages/PyQt4/ $VIRTUAL_ENV/lib/python2.7/site-packages/
|
$ ln -s /usr/lib/python2.7/dist-packages/PyQt4/ $VIRTUAL_ENV/lib/python2.7/site-packages/
|
||||||
$ ln -s /usr/lib/python2.7/dist-packages/sip.so $VIRTUAL_ENV/lib/python2.7/site-packages/
|
$ ln -s /usr/lib/python2.7/dist-packages/sip.so $VIRTUAL_ENV/lib/python2.7/site-packages/
|
||||||
|
|||||||
3
setup.py
3
setup.py
@@ -1,9 +1,10 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
|
|
||||||
|
import setuptools
|
||||||
from distutils.core import setup, Extension
|
from distutils.core import setup, Extension
|
||||||
|
|
||||||
setup(name='rdpy',
|
setup(name='rdpy',
|
||||||
version='1.0',
|
version='1.0.1',
|
||||||
description='Remote Desktop Protocol in Python',
|
description='Remote Desktop Protocol in Python',
|
||||||
author='Sylvain Peyrefitte',
|
author='Sylvain Peyrefitte',
|
||||||
author_email='citronneur@gmail.com',
|
author_email='citronneur@gmail.com',
|
||||||
|
|||||||
Reference in New Issue
Block a user