34 lines
722 B
TOML
34 lines
722 B
TOML
[project]
|
|
name = "git-changes"
|
|
version = "0.0.1"
|
|
authors = [
|
|
{name="Adwaith-Rajesh", email="me@adwaith.dev"}
|
|
]
|
|
description = "A way to manage commit messages"
|
|
readme = "README.md"
|
|
requires-python = ">=3.12"
|
|
classifiers = [
|
|
"Programming Language :: Python :: 3",
|
|
"Operating System :: OS Independent",
|
|
]
|
|
license = "MIT"
|
|
license-files = ["LICENSE"]
|
|
|
|
|
|
[project.scripts]
|
|
gitc = "git_changes:main"
|
|
gitc-add = "git_changes:git_add"
|
|
gitc-show-messages = "git_changes:show_messages"
|
|
|
|
[build-system]
|
|
requires = ["setuptools>=61.0"]
|
|
|
|
[tool.setuptools]
|
|
py-modules = ["git_changes"]
|
|
|
|
# [tool.setuptools.packages.find]
|
|
# exclude = ["test", "tests"]
|
|
|
|
[project.urls]
|
|
Homepage = "https://github.com/Adwaith-Rajesh/git-changes"
|