-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
56 lines (52 loc) · 1.38 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "grab_codeql"
version = "0.0.5-b1"
dependencies = [
'importlib-metadata; python_version>"3.8"',
"requests==2.31.0",
"python-dateutil==2.8.2",
"tqdm==4.64.0",
"distro==1.3.0",
"packaging==21.3",
]
authors = [
{ name = "aegilops", email = "aegilops@github.com" }
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Topic :: Software Development :: Quality Assurance",
"Topic :: System :: Software Distribution",
]
keywords = [
"codeql", "ql", "github", "sast", "security", "advanced-security", "vscode"
]
[project.urls]
repository = "https://github.com/advanced-security/grab_ql"
[project.scripts]
grab-codeql = "grab_codeql.grab_codeql:main"
[poetry.tool]
dev-dependencies = [
"yapf==0.32.0",
"build==0.8.0",
"bandit==1.7.4",
"dlint==0.12.0",
"mypy==0.961",
"types-python-dateutil==2.8.18",
"types-requests==2.28.0",
"pydocstyle==6.1.1",
"vulture==2.4",
"isort==5.10.1",
"nuitka==0.9",
"orderedset==2.0.3",
"zstandard==0.18.0",
"pytest==7.1.2",
]
repository = "https://github.com/advanced-security/grab_ql"