PyVulnerabilityLookup/pyproject.toml

47 lines
1.2 KiB
TOML
Raw Normal View History

2023-05-19 13:21:11 +00:00
[tool.poetry]
name = "pyvulnerabilitylookup"
2024-07-26 13:07:21 +00:00
version = "1.3.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',
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-07-23 13:02:09 +00:00
Sphinx = { version = "^7.4.7", optional = true }
2023-05-19 13:21:11 +00:00
[tool.poetry.extras]
docs = ["Sphinx"]
[tool.poetry.group.dev.dependencies]
2024-07-23 13:02:09 +00:00
pylint = "^3.2.6"
mypy = "^1.11.0"
2024-07-19 12:07:09 +00:00
types-requests = "^2.32.0.20240712"
ipython = "^8.26.0"
2024-07-26 13:07:21 +00:00
pytest = "^8.3.2"
2023-05-19 13:21:11 +00:00
[build-system]
requires = ["poetry_core"]
build-backend = "poetry.core.masonry.api"