-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.bak
45 lines (40 loc) · 1.1 KB
/
pyproject.bak
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
35
36
37
38
39
40
41
42
43
44
45
[tool.poetry]
name = "hint-cli"
version = "0.10.0"
description = "Get help and examples for commands from the command line, without switching context or applications."
authors = ["Andrew Garner"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/agarthetiger/hint/"
repository = "https://github.com/agarthetiger/hint/"
documentation = "https://agarthetiger.github.io/hint/"
keywords = ["cli", "help"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.11",
"Topic :: Utilities",
]
include = [
"LICENSE",
]
packages = [
{ include = "hint_cli" }
]
[tool.poetry.dependencies]
python = "^3.11.0"
gitpython = "^3.1.7"
pygments = "~=2.7"
paramiko = "^2.7.2"
click = "~=8.0"
[tool.poetry.dev-dependencies]
pytest = "^7.1.2"
pytest-cov = "^3.0.0"
[tool.poetry.scripts]
hint = 'hint_cli.hint:cli_entrypoint'
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"