OcuAI / pyproject.toml
abhikamuni's picture
Add application file
b38657b
[project]
name = "ocu-ai"
version = "1.0.0"
description = "AI-powered medical chatbot and eye disease detection system using Streamlit, LLMs, Pinecone, and Keras."
readme = "README.md"
requires-python = ">=3.9,<3.13"
license = {text = "AGPL v3"}
authors = [
{name = "Your Name", email = "your.email@example.com"}
]
keywords = ["flask", "langchain", "pinecone", "openai", "chatbot", "tensorflow", "eye-disease", "rag"]
dependencies = [
"flask == 3.1.1",
"langchain==0.3.26",
"langchain-pinecone==0.2.8",
"langchain-openai==0.3.24",
"langchain-community==0.3.26",
"sentence-transformers==4.1.0",
"pypdf==5.6.1",
"python-dotenv==1.1.0",
"tensorflow==2.15.0",
"tensorflow-io-gcs-filesystem==0.31.0"
]
[project.optional-dependencies]
dev = [
"ruff>=0.6.9",
"pre-commit>=3.8.0"
]
[project.urls]
Homepage = "https://gitlab.com/abhikamuni/ocu-ai"
Repository = "https://gitlab.com/your-username/ocu-ai"
Documentation = "https://gitlab.com/your-username/ocu-ai/-/wikis/home"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.ruff]
line-length = 88
target-version = "py39"
extend-select = ["I"] # enable import sorting
fix = true # allow ruff to autofix
src = ["src", "."] # treat src and root as import roots
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false