2021-04-16 04:14:37 +00:00
|
|
|
[build-system]
|
|
|
|
requires = [
|
2024-08-08 07:50:27 +00:00
|
|
|
"setuptools>=64",
|
|
|
|
"setuptools_scm>=8",
|
2021-04-17 04:43:10 +00:00
|
|
|
"wheel"
|
2021-04-16 04:14:37 +00:00
|
|
|
]
|
2021-04-17 04:43:10 +00:00
|
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
|
2022-04-07 07:10:16 +00:00
|
|
|
[project]
|
|
|
|
name = "yaclog"
|
|
|
|
description = "Yet another changelog CLI tool."
|
|
|
|
readme = "README.md"
|
|
|
|
authors = [{ name = "Andrew Cassidy", email = "drewcassidy@me.com" }]
|
|
|
|
keywords = ["changelog", "commandline", "markdown"]
|
|
|
|
classifiers = [
|
|
|
|
"Development Status :: 5 - Production/Stable",
|
|
|
|
"Intended Audience :: Developers",
|
|
|
|
"License :: OSI Approved :: GNU Affero General Public License v3",
|
|
|
|
"Operating System :: OS Independent",
|
|
|
|
"Programming Language :: Python :: 3 :: Only",
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
"Programming Language :: Python :: 3.8",
|
|
|
|
"Programming Language :: Python :: 3.9",
|
2022-04-08 07:01:45 +00:00
|
|
|
"Programming Language :: Python :: 3.10",
|
2024-08-25 04:25:46 +00:00
|
|
|
"Programming Language :: Python :: 3.11",
|
|
|
|
"Programming Language :: Python :: 3.12",
|
2022-04-07 07:10:16 +00:00
|
|
|
"Topic :: Text Processing :: Markup :: Markdown",
|
|
|
|
"Topic :: Software Development :: Version Control :: Git",
|
|
|
|
"Topic :: Utilities"
|
|
|
|
]
|
|
|
|
|
|
|
|
requires-python = ">= 3.8"
|
|
|
|
dependencies = [
|
2024-08-08 07:50:19 +00:00
|
|
|
"Click >= 8.0",
|
2022-04-07 07:10:16 +00:00
|
|
|
"GitPython >= 3",
|
2022-08-14 03:02:45 +00:00
|
|
|
"packaging >= 20",
|
|
|
|
"tomlkit >= 0.11"
|
|
|
|
|
2022-04-07 07:10:16 +00:00
|
|
|
]
|
|
|
|
dynamic = ["version"]
|
|
|
|
|
|
|
|
[project.optional-dependencies]
|
|
|
|
docs = [
|
|
|
|
"Sphinx >= 3.5",
|
|
|
|
"sphinx-click >= 2.7",
|
|
|
|
"sphinx-rtd-theme",
|
|
|
|
"myst-parser >= 0.14",
|
2024-08-25 03:29:44 +00:00
|
|
|
"sphinx-jinja >=1.2.1",
|
2022-04-07 07:10:16 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[project.scripts]
|
|
|
|
yaclog = "yaclog.cli.__main__:cli"
|
|
|
|
|
|
|
|
[project.urls]
|
|
|
|
Source = "https://github.com/drewcassidy/yaclog"
|
|
|
|
Changelog = "https://github.com/drewcassidy/yaclog/blob/main/CHANGELOG.md"
|
|
|
|
Docs = "https://yaclog.readthedocs.io/"
|
|
|
|
|
|
|
|
[tool.setuptools_scm]
|
2024-08-27 07:20:53 +00:00
|
|
|
fallback_version = "0.0.0"
|
2022-04-07 07:10:16 +00:00
|
|
|
|
|
|
|
[tool.setuptools.packages.find]
|
2024-08-27 08:42:18 +00:00
|
|
|
include = ["yaclog*"]
|