mirror of
https://github.com/openswarm-ai/openswarm.git
synced 2026-09-11 20:27:44 +02:00
10 lines
257 B
Python
10 lines
257 B
Python
from setuptools import setup, find_packages
|
|
|
|
# Exposes both `debug` (legacy) and `swarm_debug` (webapp-template convention; thin re-export).
|
|
setup(
|
|
name="debug",
|
|
version="0.1",
|
|
packages=find_packages(),
|
|
py_modules=["debug", "swarm_debug"]
|
|
)
|