-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (31 loc) · 923 Bytes
/
pyproject.toml
File metadata and controls
37 lines (31 loc) · 923 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
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[project]
name = "anyparser-langchain"
version = "0.0.2"
description = "Anyparser LangChain Integration"
readme = "README.md"
requires-python = ">=3.9"
license = { text = "Apache-2.0" }
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Typing :: Typed",
]
[project.urls]
Homepage = "https://github.com/anyparser/anyparser_langchain"
[tool.poetry]
packages = [{ include = "anyparser_langchain" }]
[tool.poetry.dependencies]
python = "^3.9"
anyparser-core = "^1.0.1"
langchain-core = "^0.3.34"
[tool.poetry.group.dev.dependencies]
pytest = "^8.2"
pytest-cov = "^5.0.0"
black = "^24.2.0"
pytest-asyncio = "^0.25.2"
[tool.pytest.ini_options]
addopts = "--cov=anyparser_langchain --cov-report=term --cov-report=html"