-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
76 lines (71 loc) · 2.29 KB
/
Copy pathsetup.py
File metadata and controls
76 lines (71 loc) · 2.29 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
"""
Setup script for RAG Debugger.
Allows installation via pip for users without Poetry.
"""
from setuptools import setup, find_packages
from pathlib import Path
# Read README
readme_file = Path(__file__).parent / "README.md"
long_description = readme_file.read_text() if readme_file.exists() else ""
# Single source of truth for version
version_file = Path(__file__).parent / "VERSION"
version = "0.3.3"
setup(
name="ragtrace",
version="0.3.2",
description="Observability and tracing for Retrieval-Augmented Generation pipelines",
long_description=long_description,
long_description_content_type="text/markdown",
author="Sabyasachi Ghosh",
author_email="",
url="https://github.com/yourusername/ragtrace",
packages=find_packages(exclude=["tests", "examples"]),
include_package_data=True,
package_data={
"ui": ["*.html", "*.css", "*.js"],
},
python_requires=">=3.9",
install_requires=[
"fastapi>=0.109.0",
"uvicorn[standard]>=0.27.0",
"pydantic>=2.5.0",
"sqlalchemy>=2.0.0",
"click>=8.1.0",
"tiktoken>=0.5.0",
"langchain>=0.1.0",
"langchain-community>=0.0.20",
"langchain-openai>=0.0.5",
"openai>=1.0.0",
"rich>=13.7.0",
],
extras_require={
"dev": [
"pytest>=7.4.0",
"black>=24.0.0",
"ruff>=0.1.0",
"pytest-asyncio>=0.21.0",
],
},
entry_points={
"console_scripts": [
"ragtrace=cli.main:cli",
],
},
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Debuggers",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
keywords="rag llm debugging retrieval-augmented-generation langchain openai",
project_urls={
"Bug Reports": "https://github.com/yourusername/ragtrace/issues",
"Source": "https://github.com/yourusername/ragtrace",
},
)