-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (53 loc) · 1.51 KB
/
pyproject.toml
File metadata and controls
62 lines (53 loc) · 1.51 KB
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
[build-system]
requires = ["hatchling>=1.24.0"]
build-backend = "hatchling.build"
[project]
name = "smartjoin-py"
version = "0.1.2"
description = "Deterministic key and join discovery for structured datasets."
readme = "README.md"
requires-python = ">=3.11"
license = { text = "MIT" }
authors = [
{name = "tbrus", email = "brus.tomasz@outlook.com"}
]
keywords = ["data", "joins", "schema", "discovery", "relationships", "datasets"]
classifiers = [
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"polars>=1.10.0",
"pandas>=2.2.0",
"openpyxl>=3.1.0",
"typer>=0.12.3",
"pydantic>=2.8.2",
]
[project.optional-dependencies]
dev = [
"pytest>=8.3.2",
"ruff>=0.6.2",
"pre-commit>=4.0.1",
]
[project.urls]
Homepage = "https://github.com/tbrus/smartjoin"
Repository = "https://github.com/tbrus/smartjoin"
Issues = "https://github.com/tbrus/smartjoin/issues"
[project.scripts]
smartjoin = "smartjoin.cli:main"
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I", "B", "UP"]
[tool.hatch.build.targets.wheel]
packages = ["src/smartjoin"]
[tool.hatch.build.targets.wheel.force-include]
"scripts/test_datasets" = "smartjoin/_bundled_test_datasets"