2023-05-19 13:21:11 +00:00
|
|
|
[tool.poetry]
|
|
|
|
name = "pyvulnerabilitylookup"
|
2023-11-21 16:24:07 +00:00
|
|
|
version = "0.1"
|
2023-05-19 13:21:11 +00:00
|
|
|
description = "Python CLI and module for Vulnerability Lookup"
|
|
|
|
authors = ["Raphaël Vinot <raphael.vinot@circl.lu>"]
|
|
|
|
license = "BSD-3-Clause"
|
|
|
|
|
|
|
|
readme = "README.md"
|
|
|
|
|
|
|
|
classifiers = [
|
|
|
|
'License :: OSI Approved :: BSD License',
|
|
|
|
'Development Status :: 5 - Production/Stable',
|
|
|
|
'Environment :: Console',
|
|
|
|
'Operating System :: POSIX :: Linux',
|
|
|
|
'Intended Audience :: Science/Research',
|
|
|
|
'Intended Audience :: Telecommunications Industry',
|
|
|
|
'Intended Audience :: Information Technology',
|
|
|
|
'Programming Language :: Python :: 3',
|
|
|
|
'Programming Language :: Python :: 3.10',
|
|
|
|
'Programming Language :: Python :: 3.11',
|
|
|
|
'Topic :: Security',
|
|
|
|
'Topic :: Internet',
|
|
|
|
]
|
|
|
|
|
|
|
|
[tool.poetry.scripts]
|
|
|
|
vulnerability_lookup = 'pyvulnerabilitylookup:main'
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
|
|
|
python = "^3.10"
|
2023-05-25 15:45:53 +00:00
|
|
|
requests = "^2.31.0"
|
2023-09-27 16:13:06 +00:00
|
|
|
Sphinx = { version = "^7.2.6", optional = true }
|
2023-05-19 13:21:11 +00:00
|
|
|
|
|
|
|
[tool.poetry.extras]
|
|
|
|
docs = ["Sphinx"]
|
|
|
|
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
2023-12-22 14:36:09 +00:00
|
|
|
pylint = "^3.0.3"
|
|
|
|
mypy = "^1.8.0"
|
2023-10-18 14:26:25 +00:00
|
|
|
types-requests = "^2.31.0.10"
|
2023-12-22 14:36:09 +00:00
|
|
|
ipython = "^8.19.0"
|
2023-11-01 19:34:09 +00:00
|
|
|
pytest = "^7.4.3"
|
2023-05-19 13:21:11 +00:00
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["poetry_core"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|