-
Notifications
You must be signed in to change notification settings - Fork 31
/
pyproject.toml
37 lines (33 loc) · 995 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 = "CrackQL"
version = "1.0"
description = "CrackQL is a GraphQL password brute-force and fuzzing utility."
authors = ["Nick Aleks <[email protected]>", "Dolev Farhi <[email protected]>"]
readme = "README.md"
homepage = "https://github.com/nicholasaleks/CrackQL"
repository = "https://github.com/nicholasaleks/CrackQL"
exclude = []
include = ["CrackQL.py", "version", "lib", "LICENSE", "sample-inputs", "sample-queries"]
license = "BSD-3-Clause"
classifiers = [
'Environment :: Console',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3',
'Topic :: Security',
]
packages = [
{ include = "version.py" },
{ include = "config.py" },
{ include = "lib"}
]
[tool.poetry.scripts]
crackql = 'CrackQL:main'
[tool.poetry.dependencies]
python = "^3.6.0"
requests = "*"
graphql-core = "^3.2.1"
jinja2 = "*"
typing-extensions = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"