find_duplicate_files/pyproject.toml

25 lines
No EOL
681 B
TOML

[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project.urls]
Homepage = ""
[project]
name = "find_duplicate_files"
version = "0.0.1"
description = "Given two directories, find files in first directory that are present in the second by checking hashes"
readme = "README.md"
authors = [{ name = "Antonio J. Delgado", email = "" }]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: GPLv3 License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
#keywords = ["vCard", "contacts", "duplicates"]
dependencies = [
"click",
"click_config_file",
]
requires-python = ">=3"