-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
52 lines (43 loc) · 1.33 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
[tool.poetry]
name = "sqlinjectlib"
version = "0.1.2"
description = "A library to simplify SQL injections during CTFs"
authors = ["rikyiso01 <riky.isola@gmail.com>"]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Database",
"Topic :: Utilities",
"Typing :: Typed",
]
readme="README.md"
repository="https://github.com/rikyiso01/sqlinjectlib"
documentation="https://rikyiso01.github.io/sqlinjectlib"
keywords=["sqlinjection"]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/rikyiso01/sqlinjectlib/issues"
[tool.poetry.dependencies]
python = "^3.10"
typing-extensions = "^4.4.0"
[tool.poetry.group.dev.dependencies]
httpx = "^0.23.0"
radon = "^5.1.0"
ipython = "^8.6.0"
[tool.poetry.group.docs.dependencies]
pdoc = "^12.2.1"
[tool.poetry.group.test.dependencies]
mysql = "^0.0.3"
pytest = "^7.2.0"
pytest-asyncio = "^0.20.1"
pytest-lazy-fixture = "^0.6.3"
pytest-cov = "^4.0.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
asyncio_mode = "auto"