PyVulnerabilityLookup/pyproject.toml

48 lines
1.3 KiB
TOML
Raw Normal View History

2023-05-19 15:21:11 +02:00
[tool.poetry]
name = "pyvulnerabilitylookup"
2024-12-09 14:22:25 +01:00
version = "2.2.0"
2023-05-19 15:21:11 +02: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',
2024-07-26 15:07:21 +02:00
'Programming Language :: Python :: 3.12',
2024-11-18 12:41:49 +01:00
'Programming Language :: Python :: 3.13',
2023-05-19 15:21:11 +02:00
'Topic :: Security',
'Topic :: Internet',
]
[tool.poetry.scripts]
vulnerability_lookup = 'pyvulnerabilitylookup:main'
[tool.poetry.dependencies]
python = "^3.10"
2024-07-19 14:07:09 +02:00
requests = "^2.32.3"
2024-11-05 12:43:31 +01:00
Sphinx = { version = "^8.1.3", optional = true }
2023-05-19 15:21:11 +02:00
[tool.poetry.extras]
docs = ["Sphinx"]
[tool.poetry.group.dev.dependencies]
2024-12-09 14:22:25 +01:00
pylint = "^3.3.2"
2024-11-05 12:43:31 +01:00
mypy = "^1.13.0"
types-requests = "^2.32.0.20241016"
2024-12-09 14:22:25 +01:00
ipython = "^8.30.0"
pytest = "^8.3.4"
2023-05-19 15:21:11 +02:00
[build-system]
2024-11-18 12:41:49 +01:00
requires = ["poetry-core"]
2023-05-19 15:21:11 +02:00
build-backend = "poetry.core.masonry.api"