forked from iarv/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.
11 lines
183 B
Python
Executable File
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()
|