mirror of
https://github.com/pyMC-dev/pyMC_Repeater.git
synced 2026-06-26 13:01:06 +02: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()
|