Files
pyMC_Repeater/setup.py
Lloyd 59a151f382 Add build scripts and setup for pyMC_Repeater
- Implemented build-dev.sh for creating development .deb packages from untagged commits.
- Implemented build-prod.sh for creating production .deb packages from tagged commits, including checks for a clean git state.
- Added setup-build-env.sh to automate the installation of required build dependencies for Debian/Ubuntu.
- Created setup.py to manage package setup using setuptools with versioning from git tags.
2025-12-30 15:17:48 +00:00

11 lines
183 B
Python
Executable File

#!/usr/bin/env python3
"""
Setup script for pymc_repeater
Version is managed by setuptools_scm from git tags
"""
from setuptools import setup
if __name__ == "__main__":
setup()