guzzy/pyproject.toml

40 lines
1.0 KiB
TOML
Raw Normal View History

2021-08-26 22:25:06 +02:00
[tool.poetry]
name = "guzzy"
2021-09-01 22:16:41 +02:00
version = "0.0.0"
2021-08-26 22:25:06 +02:00
description = "Interactive CLI git client inside fzf."
authors = ["samedamci <samedamci@disroot.org>"]
license = "ISC"
homepage = "https://github.com/samedamci/guzzy"
repository = "https://github.com/samedamci/guzzy"
keywords = ["git", "fzf"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: ISC License (ISCL)",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Unix Shell",
"Intended Audience :: Developers",
"Topic :: Software Development :: Version Control",
"Topic :: Utilities",
]
[tool.poetry.dependencies]
2021-09-01 21:04:09 +02:00
python = "^3.9.2"
2021-09-01 21:53:09 +02:00
pysheller = "^0.1.0"
[tool.poetry.dev-dependencies]
black = "^21.8b0"
2021-08-26 22:25:06 +02:00
[tool.poetry.scripts]
guzzy = "guzzy:main"
2021-08-26 22:25:06 +02:00
2021-09-01 22:16:41 +02:00
[tool.poetry-dynamic-versioning]
enable = true
vcs = "git"
style = "semver"
format = "{base}"
2021-08-26 22:25:06 +02:00
[build-system]
2021-09-01 22:16:41 +02:00
requires = ["poetry-core>=1.0.0, poetry-dynamic-versioning"]
2021-08-26 22:25:06 +02:00
build-backend = "poetry.core.masonry.api"