-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (26 loc) · 828 Bytes
/
pyproject.toml
File metadata and controls
32 lines (26 loc) · 828 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
[tool.poetry]
name = "MovieGraphBenchmark"
version = "1.1.0"
description = "Benchmark datasets for Entity Resolution on Knowledge Graphs containing information about movies, tv shows and persons from IMDB,TMDB and TheTVDB"
authors = ["Daniel Obraczka <obraczka@informatik.uni-leipzig.de>"]
readme = "README.md"
repository = "https://github.com/ScaDS/MovieGraphBenchmark"
[tool.poetry.dependencies]
python = ">=3.8"
requests = "*"
tqdm = "*"
pandas = "*"
pystow = "*"
[tool.poetry.scripts]
moviegraphbenchmark = "moviegraphbenchmark.create_graph:create_graph_data"
[tool.poetry.group.dev.dependencies]
ipdb = "^0.13.9"
pytest = "^8.0.0"
pytest-mock = "^3.12.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
markers = [
"slow: mark test as slow"
]