10 lines
239 B
Python
10 lines
239 B
Python
#!/usr/bin/env python
|
|
|
|
# This is a shim to allow GitHub to detect the package, build is done with poetry
|
|
# Taken from https://github.com/Textualize/rich
|
|
|
|
import setuptools
|
|
|
|
if __name__ == "__main__":
|
|
setuptools.setup(name="dbus-fast")
|