-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (34 loc) · 843 Bytes
/
pyproject.toml
File metadata and controls
39 lines (34 loc) · 843 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
38
39
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pyodibel"
version = "0.1.0"
description = "Open Data Integration Benchmark Evaluation Lab - Generate and evaluate benchmark datasets for data integration tasks."
authors = [
{name = "Odibel Team", email = "team@odibel.org"}
]
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"pyyaml>=6.0",
"pydantic>=2.0.0",
"requests>=2.25.0",
"rdflib>=6.0.0",
"SQLAlchemy>=2.0.0",
"click>=8.1.8",
"tqdm>=4.67.1",
"pyspark>=3.5.7",
"networkx>=3.1",
]
[project.optional-dependencies]
test = [
"pytest>=7.0.0",
"pytest-mock>=3.10.0"
]
[project.scripts]
pyodibel = "pyodibel.cli.main:cli"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-dir]
"" = "src"