This commit is contained in:
2025-02-07 10:21:16 +08:00
parent 2c9b1bba3a
commit 0ef44b002e
18 changed files with 29943 additions and 111 deletions

10
setup.py Normal file
View File

@@ -0,0 +1,10 @@
from setuptools import setup, find_packages
setup(
name='matagent',
version='0.1.0',
packages=find_packages(),
install_requires=[
# List any dependencies here
],
)