-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
40 lines (36 loc) · 1.12 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
[tool.poetry]
name = "ghas-cli"
version = "1.6.1"
description = "Command line interface to interact with GitHub Advanced Security."
authors = ["jboursier <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/Malwarebytes/ghas-cli"
documentation = "https://github.com/Malwarebytes/ghas-cli/wiki"
repository = "https://github.com/Malwarebytes/ghas-cli"
keywords = ["security", "cli", "github", "utility"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Topic :: Utilities"
]
include = ["src/cli.py"]
[tool.poetry.dependencies]
python = ">=3.8,<4"
click = ">=8"
requests = "*"
colorama = "*"
configparser = "*"
python-magic = "*"
urllib3 = ">=1.26.12,<3.0.0"
[tool.poetry.dev-dependencies]
[tool.poetry.scripts]
ghas-cli = 'src.cli:main'
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"