-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (33 loc) · 978 Bytes
/
pyproject.toml
File metadata and controls
38 lines (33 loc) · 978 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
[tool.poetry]
name = "knowledgebase-processor"
version = "0.1.0"
description = "A tool for extracting and analyzing knowledge base content"
authors = ["David Stenglein <dave@davidstenglein.com>"]
readme = "README.md"
packages = [{include = "knowledgebase_processor", from = "src"}]
[tool.poetry.dependencies]
python = "^3.12"
pydantic = "^2.11.4"
markdown-it-py = "^3.0.0"
pyyaml = "^6.0.2"
tomli = "^2.2.1"
# spacy = "^3.7.0" # Removed to avoid C compilation issues in cloud builds
rdflib = "^7.0.0"
click = "^8.1.0"
rich = "^13.7.0"
watchdog = "^3.0.0"
SPARQLWrapper = "^2.0.0"
[tool.poetry.group.test.dependencies]
pytest = "^7.4.0"
pytest-cov = "^4.1.0"
pytest-benchmark = "^4.0.0"
psutil = "^5.9.0"
docker = "^6.1.0"
requests = "^2.31.0"
[tool.poetry.scripts]
kbp = "knowledgebase_processor.cli.main:main"
kb = "knowledgebase_processor.cli.main:main"
test = "scripts.run_tests:main"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"