mirror of
https://codeberg.org/diginaut/digimarks.git
synced 2026-02-04 15:00:26 +01:00
8 lines
189 B
Python
8 lines
189 B
Python
#!/usr/bin/env python
|
|
"""Install script for module installation. Compatibility stub because pyproject.toml is used."""
|
|
|
|
import setuptools
|
|
|
|
if __name__ == "__main__":
|
|
setuptools.setup()
|