forked from dsoftwareinc/github-actions-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
66 lines (59 loc) · 1.62 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
github-actions-cli = "gha_cli.cli:cli"
#github-scanner = "gha_cli.scanner:cli"
[tool.poetry]
name = "github-actions-cli"
version = "1.1.5"
description = "GitHub Actions CLI - allows updating workflows, etc."
readme = "README.md"
keywords = ["GitHub Actions", "CLI"]
packages = [
{ include = "gha_cli" },
]
authors = [
"Daniel Moran <[email protected]>",
]
maintainers = [
"Daniel Moran <[email protected]>",
]
license = "BSD-3-Clause"
classifiers = [
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Topic :: Software Development :: Libraries :: Python Modules',
]
homepage = "https://github.com/dsoftwareinc/github-actions-cli"
documentation = "https://github.com/dsoftwareinc/github-actions-cli"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/dsoftwareinc/github-actions-cli/issues"
"Funding" = "https://github.com/sponsors/cunla"
[tool.poetry.dependencies]
python = "^3.9"
pygithub = "^2.2"
pyyaml = "^6.0"
click = "^8.1"
cffi = "^1.16"
coloredlogs = "^15.0.1"
[tool.poetry.dev-dependencies]
poetry = "^1.5"
Flake8-pyproject = "^1.2"
[tool.flake8]
max-line-length = 119
exclude = [
".git",
".github",
"__pycache__",
"dist",
"venv",
".venv"
]