10 lines
192 B
Python
10 lines
192 B
Python
#!/usr/bin/env python3
|
|
"""
|
|
Setup file for Debian packaging compatibility.
|
|
This file is used to ensure proper package discovery during Debian builds.
|
|
"""
|
|
|
|
from setuptools import setup
|
|
|
|
setup()
|