-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (19 loc) · 716 Bytes
/
Copy pathsetup.py
File metadata and controls
20 lines (19 loc) · 716 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup, find_packages
setup(
name="linedify",
version="0.3.4",
url="https://github.com/uezo/linedify",
author="uezo",
author_email="uezo@uezo.net",
maintainer="uezo",
maintainer_email="uezo@uezo.net",
description="💬⚡ linedify: Supercharging your LINE Bot with Dify power!",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
packages=find_packages(exclude=["examples*", "tests*"]),
install_requires=["aiohttp>=3.9.5", "line-bot-sdk>=3.11.0", "fastapi>=0.111.0", "uvicorn>=0.30.1", "SQLAlchemy>=2.0.31"],
license="Apache v2",
classifiers=[
"Programming Language :: Python :: 3"
]
)