| [project] |
| name = "e-hekim" |
| version = "1.0.0" |
| description = "Turkish medical RAG and semantic search over hospital articles (ChromaDB + embeddingmagibu-200m)" |
| readme = "README.md" |
| requires-python = ">=3.11" |
| license = { text = "MIT" } |
|
|
| dependencies = [ |
| |
| "fastapi>=0.115", |
| "uvicorn[standard]>=0.34", |
| "pydantic>=2.9", |
| "pydantic-settings>=2.6", |
| "python-dotenv>=1.0", |
| |
| "chromadb>=1.0", |
| |
| "sentence-transformers>=5.2", |
| "transformers>=5.0", |
| "torch>=2.6", |
| |
| "datasets>=3.0", |
| "huggingface-hub>=0.28", |
| "pandas>=2.2", |
| "pyarrow>=18.0", |
| |
| "openai>=1.60", |
| ] |
|
|
| [project.optional-dependencies] |
| dev = [ |
| "pytest>=8.3", |
| "httpx>=0.28", |
| ] |
|
|
| [build-system] |
| requires = ["hatchling"] |
| build-backend = "hatchling.build" |
|
|
| [tool.hatch.build.targets.wheel] |
| packages = ["src/ehekim"] |
|
|
| [tool.pytest.ini_options] |
| testpaths = ["tests"] |
| pythonpath = ["src"] |
|
|