From b19ccc60d70835253c9585c687b5c7d233d947a5 Mon Sep 17 00:00:00 2001 From: saidsurucu Date: Sat, 24 May 2025 01:19:53 +0300 Subject: [PATCH] add pyproject.toml --- .gitignore | 2 +- pyproject.toml | 14 ++++++++++++++ 2 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 pyproject.toml diff --git a/.gitignore b/.gitignore index 42f39a1..1baa68e 100644 --- a/.gitignore +++ b/.gitignore @@ -160,4 +160,4 @@ cython_debug/ #.idea/ .DS_Store hello.py -*.toml + diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..6fee206 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,14 @@ +[project] +name = "yargi-mcp" +version = "0.1.0" +description = "MCP Server For Turkish Legal Databases" +readme = "README.md" +requires-python = ">=3.12" +dependencies = [ + "beautifulsoup4>=4.13.4", + "fastmcp>=2.2.10", + "httpx>=0.28.1", + "markitdown>=0.1.1", + "pydantic>=2.11.4", + "aiohttp>=3.11.18", +]