- 修复异常处理链,使用from语法保留原始异常 - 格式化代码以符合项目规范 - 优化导入模块的顺序 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
12 lines
200 B
Python
12 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",
|
|
],
|
|
)
|