mirror of
https://github.com/aquatix/digimarks.git
synced 2025-12-06 23:05:10 +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()
|