-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (49 loc) · 1.43 KB
/
pyproject.toml
File metadata and controls
58 lines (49 loc) · 1.43 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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "dupln"
description = "A Python package for finding and managing duplicate files using hardlinks"
readme = "README.md"
authors = [
{name = "JetLogic"},
]
license = {text = "MIT"}
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: System :: Filesystems",
"Topic :: Utilities",
]
keywords = ["duplicates", "hardlinks", "filesystem", "optimization"]
requires-python = ">=3.8"
dependencies = []
dynamic = ["version"]
[project.optional-dependencies]
dev = [
"pytest >=7.0",
"pytest-cov >=4.0",
"black >=23.0",
"flake8 >=6.0",
"mypy"
]
[project.scripts]
dupln = "dupln.__main__:main"
[tool.setuptools.dynamic]
version = {attr = "dupln.__init__.__version__"}
[project.urls]
Homepage = "https://github.com/jet-logic/dupln"
[tool.setuptools]
packages = ["dupln"]
[tool.setuptools.package-data]
"dupln" = ["py.typed"]
[tool.coverage.run]
omit = ["dupln/findskel.py", "dupln/main.py", "dupln/walkdir.py"]