11 lines
200 B
Python
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',
|
|
],
|
|
) |