Skip to content

Commit

Permalink
🔧 chore(build): use poetry
Browse files Browse the repository at this point in the history
  • Loading branch information
Jannchie committed Jun 17, 2024
1 parent 0c24d69 commit 656de25
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 14 deletions.
7 changes: 7 additions & 0 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

32 changes: 18 additions & 14 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,20 +1,11 @@


[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"

[project]
[tool.poetry]
name = "tgit"
version = "0.3.0"
description = "Tool for Git Interaction Temptation (tgit): An elegant CLI tool that simplifies and streamlines your Git workflow, making version control a breeze."
requires-python = ">=3.6"
keywords = ["git", "tool", "changelog", "version", "commit"]
dependencies = ["rich", "PyYAML", "inquirer"]
license = { file = "LICENSE" }
authors = [{ name = "Jannchie", email = "[email protected]" }]
maintainers = [{ name = "Jannchie", email = "[email protected]" }]
authors = ["Jannchie <[email protected]>"]
readme = "README.md"
license = "MIT"
keywords = ["git", "tool", "changelog", "version", "commit"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
Expand All @@ -25,6 +16,19 @@ classifiers = [
"Typing :: Typed",
]

[project.scripts]

[tool.poetry.dependencies]
python = "^3.9"
rich = "^13.7.1"
PyYAML = "^6.0.1"
inquirer = "^3.2.5"


[tool.poetry.scripts]
tgit = "tgit.cli:main"
gitt = "tgit.cli:main"


[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"

0 comments on commit 656de25

Please sign in to comment.