This commit is contained in:
2025-11-27 17:11:34 +03:00
commit c8e75a42d1
24 changed files with 1173 additions and 0 deletions

7
setup.py Normal file
View File

@@ -0,0 +1,7 @@
"""Setup script for ppmc."""
from setuptools import setup, find_packages
setup(
packages=find_packages(),
include_package_data=True,
)