2021-09-01 13:50:52 +02:00
|
|
|
[tool.poetry]
|
|
|
|
name = "pysheller"
|
2021-09-01 16:36:07 +02:00
|
|
|
version = "0.0.0"
|
2021-09-01 16:37:14 +02:00
|
|
|
description = "Small library to create Python application based on shell scripts."
|
2021-09-01 13:50:52 +02:00
|
|
|
authors = ["samedamci <samedamci@disroot.org>"]
|
|
|
|
license = "ISC"
|
2021-09-01 16:34:38 +02:00
|
|
|
homepage = "https://github.com/samedamci/guzzy"
|
|
|
|
repository = "https://github.com/samedamci/guzzy"
|
|
|
|
keywords = ["package", "shell", "shell-script"]
|
|
|
|
classifiers = [
|
|
|
|
"Development Status :: 5 - Production/Stable",
|
|
|
|
"License :: OSI Approved :: ISC License (ISCL)",
|
|
|
|
"Programming Language :: Python",
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
"Programming Language :: Python :: 3.9",
|
|
|
|
"Programming Language :: Unix Shell",
|
|
|
|
"Intended Audience :: Developers",
|
|
|
|
"Topic :: Software Development :: Libraries",
|
|
|
|
"Topic :: Utilities",
|
|
|
|
]
|
2021-09-01 22:20:35 +02:00
|
|
|
exclude = ["example"]
|
2021-09-01 13:50:52 +02:00
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
|
|
|
python = "^3.9.2"
|
|
|
|
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
|
|
black = "^21.8b0"
|
|
|
|
flake8 = "^3.9.2"
|
|
|
|
flake8-bugbear = "^21.4.3"
|
|
|
|
|
2021-09-01 16:36:07 +02:00
|
|
|
[tool.poetry-dynamic-versioning]
|
|
|
|
enable = true
|
|
|
|
vcs = "git"
|
|
|
|
style = "semver"
|
|
|
|
format = "{base}"
|
|
|
|
|
2021-09-01 13:50:52 +02:00
|
|
|
[build-system]
|
2021-09-01 22:15:31 +02:00
|
|
|
requires = ["poetry-core>=1.0.0, poetry-dynamic-versioning"]
|
2021-09-01 13:50:52 +02:00
|
|
|
build-backend = "poetry.core.masonry.api"
|