mirror of
https://github.com/openhop-dev/openhop_repeater.git
synced 2026-09-01 16:48:24 +00:00
11 lines
186 B
Python
Executable File
11 lines
186 B
Python
Executable File
#!/usr/bin/env python3
|
|
"""
|
|
Setup script for openhop_repeater
|
|
Version is managed by setuptools_scm from git tags
|
|
"""
|
|
|
|
from setuptools import setup
|
|
|
|
if __name__ == "__main__":
|
|
setup()
|