-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
62 lines (57 loc) · 1.87 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
57
58
59
60
61
62
[tool.poetry]
name = "qualysdk"
version = "0.2.7"
description = "SDK for interacting with Qualys APIs, across most modules the platform offers."
authors = ["0x41424142 <jake@jakelindsay.uk>", "0x4A616B65 <jake.lindsay@thermofisher.com>"]
maintainers = ["Jake Lindsay <jake@jakelindsay.uk>"]
readme = "README.md"
license = "MIT License"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Information Technology",
"Intended Audience :: Developers",
"Topic :: Security",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
[tool.poetry.dependencies]
python = "^3.11"
requests = "^2.32.3"
frozendict = "^2.4.4"
bs4 = "^0.0.2"
lxml = "^5.2.2"
pandas = "^2.2.2"
mkdocs = "^1.6.0"
sqlalchemy = "^2.0.37"
numpy = "^2.2.1"
pymssql = "^2.3.2"
pymysql = "^1.1.1"
pymdown-extensions = "^10.14"
mkdocs-material = "^9.5.48"
psycopg2 = {version = "^2.9.9", platform = "win32"}
psycopg2-binary = [
{version = "^2.9.9", platform = "linux"},
{version = "^2.9.9", platform = "darwin"},
]
xmltodict = ">=0.13,<0.15"
defusedxml = "^0.7.1"
packaging = "^24.1"
xlsxwriter = "^3.0.5"
[tool.poetry.urls]
Homepage = "https://github.com/0x41424142/qualysdk"
Documentation = "https://qualysdk.jakelindsay.uk"
Repository = "https://github.com/0x41424142/qualysdk"
Issues = "https://github.com/0x41424142/qualysdk/issues"
[tool.poetry.scripts]
qualysdk-updater = 'qualysdk.cli.cli_updater:main'
qualysdk-was = 'qualysdk.cli.qualysdk_was:main'
qualysdk-gav = 'qualysdk.cli.qualysdk_gav:main'
qualysdk-pm = 'qualysdk.cli.qualysdk_pm:main'
qualysdk-cert = 'qualysdk.cli.qualysdk_cert:main'
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"