chore: add setup.py to enable editable installs and proper module imports

This commit is contained in:
Annyfee
2025-11-28 11:20:20 +08:00
parent 308882eee1
commit 2ae57bd933
+8
View File
@@ -0,0 +1,8 @@
from setuptools import setup, find_packages
setup(
name='agent-craft',
version='0.1',
packages=find_packages(),
py_modules=['config','embeddings']
)