FFY00 / dbus-objects

DBus objects implementation on top of the Python type system
https://dbus-objects.readthedocs.io/en/latest/
MIT License
11 stars 4 forks source link

Package includes 'tests' directory as a top-level module #18

Closed nojocodex closed 3 years ago

nojocodex commented 3 years ago

Installing dbus-objects from PyPI installs a top-level module tests.

To reproduce:

$ python -m tests
python: No module named tests
$ pip install dbus-objects
[ snip ]
$ python
[ snip ]
>>> import tests
>>> dir(tests)
['__builtins__', '__cached__', '__doc__', '__file__', '__loader__', '__name__', '__package__', '__path__', '__spec__', 'f', 'os', 'path', 'sys']
>>>