-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
34 lines (28 loc) · 898 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[tool.poetry]
name = "tgit"
version = "0.4.0"
description = "Tool for Git Interaction Temptation (tgit): An elegant CLI tool that simplifies and streamlines your Git workflow, making version control a breeze."
authors = ["Jannchie <[email protected]>"]
readme = "README.md"
license = "MIT"
keywords = ["git", "tool", "changelog", "version", "commit"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Version Control",
"Topic :: Utilities",
"Typing :: Typed",
]
[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"