32 lines
760 B
TOML
32 lines
760 B
TOML
[project]
|
|
name = "qifdp"
|
|
version = "0.1.0"
|
|
description = "Add your description here"
|
|
readme = "README.md"
|
|
requires-python = ">=3.13"
|
|
dependencies = []
|
|
|
|
[build-system]
|
|
requires = ["setuptools", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.setuptools]
|
|
package-dir = {"" = "src"}
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|
|
|
|
[metadata]
|
|
name = "qidfp"
|
|
version = "0.1.0"
|
|
description = "A Python library to quickly parse IFD Tags"
|
|
long_description = "file:README.md"
|
|
long_description_content_type = "text/markdown"
|
|
author = "DasMoorhuhn"
|
|
author_email = "dasmoorhuhn@proton.me"
|
|
license = "GPLv3.0"
|
|
url = "https://github.com/yourusername/my-library"
|
|
classifiers = [
|
|
"Programming Language :: Python :: 3",
|
|
"Operating System :: OS Independent",
|
|
] |