-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (58 loc) · 1.62 KB
/
pyproject.toml
File metadata and controls
68 lines (58 loc) · 1.62 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
63
64
65
66
67
68
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "duplicate-finding-tool"
version = "0.3.0"
description = "Scan directories for duplicate / near-duplicate text files using shingles + Jaccard similarity, optional MinHash/LSH prefilter, clustering"
readme = "README.md"
license = { text = "MIT" }
authors = [ { name = "Tim Dickey" } ]
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Text Processing",
"Topic :: Utilities",
]
dependencies = [
"click>=8.1.0",
"tqdm>=4.66.0"
]
[project.optional-dependencies]
dev = [
"pytest>=7.4.0",
"hypothesis>=6.0.0",
"ruff>=0.4.0",
"mypy>=1.8.0",
]
[project.urls]
"Homepage" = "https://github.com/tim-dickey/duplicate-finding-tool"
"Bug Tracker" = "https://github.com/tim-dickey/duplicate-finding-tool/issues"
[project.scripts]
duplicate-finder = "duplicate_finder.cli:main"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
addopts = "-q"
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
"property: property-based tests using Hypothesis",
]
[tool.ruff]
line-length = 100
target-version = "py39"
[tool.ruff.lint]
select = ["E", "F", "W", "I"]
ignore = []
[tool.mypy]
python_version = "3.9"
strict = false
warn_unused_ignores = true