-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
87 lines (77 loc) · 1.89 KB
/
pyproject.toml
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
[tool.poetry]
name = "brickllm"
version = "1.2.0"
description = "Library for generating RDF files following BrickSchema ontology using LLM"
authors = ["Marco Perini <[email protected]>", "Daniele Antonucci <[email protected]>"]
license = "BSD-3-Clause"
readme = "README.md"
homepage = "https://brickllm.com/"
repository = "https://github.com/EURAC-EEBgroup/brickllm-lib"
documentation = "https://brickllm.com/docs"
keywords = [
"brickllm",
"brickschema",
"rdf",
"ontologies",
"knowledge graph",
"semantic web",
"ai",
"artificial intelligence",
"gpt",
"machine learning",
"natural language processing",
"nlp",
"openai",
"building automation",
"iot",
"graph",
"ontology",
]
classifiers = [
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
packages = [{include = "brickllm"}]
[tool.poetry.dependencies]
python = ">=3.9,<4.0"
langgraph = "0.2.23"
langchain_openai = "0.2.0"
langchain-fireworks = "0.2.0"
langchain-anthropic = "0.2.1"
langchain_community = "0.3.0"
langchain_core = "0.3.5"
rdflib = ">=6.2.0,<7"
pyshacl = "0.21"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4"
pytest-sugar = "*"
pytest-cov = "*"
black = "*"
mypy = "*"
ruff = "*"
isort = "*"
pre-commit = "*"
types-setuptools = "^75.1.0.20240917"
mkdocs = "^1.5"
mkdocs-material = "^9.2"
mkdocstrings-python = "^1.1"
[tool.black]
line-length = 88
target-version = ["py39"]
[tool.isort]
profile = "black"
[tool.ruff]
line-length = 88
[tool.ruff.lint]
select = ["F", "E", "W", "C"]
ignore = ["E203", "E501"] # Ignore conflicts with Black
[tool.mypy]
python_version = "3.9"
strict = true
disallow_untyped_calls = true
ignore_missing_imports = true
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"