mirror of
https://github.com/openswarm-ai/openswarm.git
synced 2026-08-17 18:25:42 +02:00
9 lines
146 B
Python
9 lines
146 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name="debug",
|
|
version="0.1",
|
|
packages=find_packages(),
|
|
py_modules=["debug"]
|
|
)
|