-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (35 loc) · 1.02 KB
/
setup.py
File metadata and controls
36 lines (35 loc) · 1.02 KB
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
32
33
34
35
36
from setuptools import setup, find_packages
setup(
name="mealdb-rag",
version="1.0.0",
description="RAG system for TheMealDB with local caching and ToolFront integration",
author="Your Name",
packages=find_packages(where="src"),
package_dir={"": "src"},
python_requires=">=3.10",
install_requires=[
"toolfront>=0.1.0",
"requests>=2.31.0",
"pydantic>=2.5.0",
"python-dotenv>=1.0.0",
"aiohttp>=3.9.0",
"asyncio-throttle>=1.0.2",
"typer>=0.9.0",
"rich>=13.0.0",
"loguru>=0.7.0",
],
entry_points={
"console_scripts": [
"mealdb-rag=cli:app",
],
},
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
)