PyVulnerabilityLookup/pyproject.toml

48 lines
1.3 KiB
TOML
Raw Normal View History

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