-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
50 lines (46 loc) · 1.21 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "QualysPy"
version = "0.5.4.1"
authors = [
{ name="Jordan Barnartt", email="[email protected]" },
]
description = "A Python wrapper for the Qualys API."
readme = "README.md"
requires-python = ">=3.12"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Information Technology",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Topic :: Security",
"Typing :: Typed",
]
dependencies = [
"httpx",
"python-dateutil",
"pydantic",
"SQLAlchemy",
"psycopg[binary]",
"pydantic-xml",
"python-decouple",
]
[project.urls]
"Homepage" = "https://github.com/JordanBarnartt/qualyspy"
"Bug Tracker" = "https://github.com/JordanBarnartt/qualyspy/issues"
[tool.pyright]
reportUnboundVariable = false
reportUnknownArgumentType = false
reportPrivateUsage = false
reportUnknownVariableType = false
reportUnknownMemberType = false
reportGeneralTypeIssues = false
reportUntypedBaseClass = false
reportInvalidTypeVarUse = false
[[tool.mypy.overrides]]
module = "sqlalchemy"
ignore_errors = true