-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (29 loc) · 802 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
from setuptools import setup, find_packages
with open("README.md", "r") as fp:
long_description = fp.read()
setup(
# package
name="madoka",
version="1.0.0",
packages=find_packages(),
entry_points={},
# requires
python_requires='>=3.9',
install_requires=[
'websockets>=8.1',
'pydantic>=1.8',
'croniter>=1.0',
'cachetools>=4.2',
],
extras_require={},
# description
description="A bot framework based on mirai-api-http",
long_description=long_description,
long_description_content_type="text/markdown",
license="GNU Lesser General Public License v3 (LGPLv3)",
classifiers=[],
# about
author="Simon_Chen",
author_email="[email protected]",
url="https://github.com/Simon-Chenzw/madoka",
)