-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
37 lines (34 loc) · 1011 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
35
36
37
[tool.poetry]
name = "git-orca-python"
version = "0.1.0"
description = "This a CLI tool to fetch issues and PRs from any repo"
authors = ["lennox charles <lennyaiko17@gmail.com>"]
maintainers = ["lennox charles <lennyaiko17@gmail.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/lennyAiko/git-orca-python"
repository = "https://github.com/lennyAiko/git-orca-python"
keywords = ["github", "issues", "git", "tool", "pr", "CLI"]
packages = [{include = "git-orca"}]
[tool.poetry.dependencies]
python = "^3.11"
certifi = "2023.7.22"
charset-normalize = "3.2.0"
click = "8.1.7"
colorama = "0.4.6"
idna = "3.4"
markdown-it-py = "3.0.0"
mdurl = "0.1.2"
Pygments = "2.16.1"
python-dotenv = "1.0.0"
requests = "2.31.0"
rich = "13.5.2"
shellingham = "1.5.3"
typer = "0.9.0"
typing_extensions = "4.7.1"
urllib3 = "2.0.4"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/lennyAiko/git-orca-python/issues"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"