mirror of
https://github.com/chainstacklabs/pumpfun-bonkfun-bot.git
synced 2026-07-28 15:57:43 +00:00
9 lines
164 B
Python
9 lines
164 B
Python
from setuptools import find_packages, setup
|
|
|
|
setup(
|
|
name="pump_bot",
|
|
version="0.1",
|
|
package_dir={"": "src"},
|
|
packages=find_packages(where="src"),
|
|
)
|