Files
Mofox-Core/setup.py
2025-03-08 16:10:55 +08:00

11 lines
200 B
Python

from setuptools import find_packages, setup
setup(
name="maimai-bot",
version="0.1",
packages=find_packages(),
install_requires=[
'python-dotenv',
'pymongo',
],
)