-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (29 loc) · 857 Bytes
/
pyproject.toml
File metadata and controls
31 lines (29 loc) · 857 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "bindllm"
version = "0.1.0"
description = "Extract information from BindingDB using Large Language Models"
authors = [
{name = "Henrik Seidel",email = "heseber+github@mailbox.org"}
]
readme = "README.md"
requires-python = "<4.0,>=3.13"
dependencies = [
"black (>=25.1.0,<26.0.0)",
"ruff (>=0.9.9,<0.10.0)",
"langchain (>=0.3.19,<0.4.0)",
"langchain-core (>=0.3.40,<0.4.0)",
"langchain-community (>=0.3.18,<0.4.0)",
"langchain-openai (>=0.3.7,<0.4.0)",
"langchain-anthropic (>=0.3.8,<0.4.0)",
"langgraph (>=0.3.2,<0.4.0)",
"requests (>=2.32.3,<3.0.0)",
"python-dotenv (>=1.0.1,<2.0.0)",
"bio (>=1.7.1,<2.0.0)",
"pandas",
"pydantic (>=2.10.6,<3.0.0)",
]
[tool.hatch.build.targets.wheel]
packages = ["bindllm"]