LEW21 / pydbus

Pythonic DBus library
GNU Lesser General Public License v2.1
331 stars 75 forks source link

support installation from any folder, minor PEP8 cleanups #88

Closed fthiery closed 5 years ago

fthiery commented 5 years ago

Currently, when installing from another folder than the root folder, installation fails because it does not find the README.rst file. This PR uses an abolute path.

Note that i also fixed some PEP8 warnings (replaced tabs by 4 spaces, removed spaces before =). I also replaced double quotes by single quotes everywhere for uniformity.

# python pydbus/setup.py install
Traceback (most recent call last):
  File "pydbus/setup.py", line 6, in <module>
    with open('README.rst') as f:
FileNotFoundError: [Errno 2] No such file or directory: 'README.rst'
fthiery commented 5 years ago

Forget it it's not a good practice anyway. Sorry for the noise