-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (34 loc) · 872 Bytes
/
pyproject.toml
File metadata and controls
41 lines (34 loc) · 872 Bytes
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
[project]
name = "medcortex"
version = "0.1.0"
description = "MedCortexAI Research Analyst - Verifiable Synthesis powered by watsonx.ai. An advanced AI research analyst for medical professionals, scientists, and academics."
readme = "README.md"
requires-python = ">=3.11"
authors = [{ name = "MedCortex" }]
dependencies = [
"streamlit>=1.37",
"pydantic>=2.7",
"pypdf>=4.2",
"pdfplumber>=0.11.0",
"langchain-text-splitters>=0.2",
"ibm-watsonx-ai>=1.1.8",
"faiss-cpu>=1.7.4",
"numpy>=1.26",
"ibm-cos-sdk>=2.13",
"python-dotenv>=1.0",
"rank-bm25>=0.2.2",
"camelot-py>=0.11.0",
"pandas>=2.2",
"python-docx>=1.1"
]
[tool.setuptools]
packages = ["app"]
[tool.setuptools.package-data]
app = ["**/*.py"]
[dependency-groups]
dev = [
"ruff>=0.4.0",
]
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"