PyVulnerabilityLookup/pyproject.toml
Raphaël Vinot 6b323d694f
Some checks failed
Python application - Test Public Interface / Python 3.11 sample (push) Has been cancelled
Python application - MyPy / Python 3.10 sample (push) Has been cancelled
Python application - MyPy / Python 3.11 sample (push) Has been cancelled
Python application - MyPy / Python 3.12 sample (push) Has been cancelled
Python application - MyPy / Python 3.8 sample (push) Has been cancelled
Python application - MyPy / Python 3.9 sample (push) Has been cancelled
Python application - Test Public Interface / Python 3.10 sample (push) Has been cancelled
Python application - Test Public Interface / Python 3.12 sample (push) Has been cancelled
Python application - Test Public Interface / Python 3.8 sample (push) Has been cancelled
Python application - Test Public Interface / Python 3.9 sample (push) Has been cancelled
chg; Bump deps
2024-11-05 12:43:31 +01:00

46 lines
1.2 KiB
TOML

[tool.poetry]
name = "pyvulnerabilitylookup"
version = "1.4.0"
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',
'Programming Language :: Python :: 3.12',
'Topic :: Security',
'Topic :: Internet',
]
[tool.poetry.scripts]
vulnerability_lookup = 'pyvulnerabilitylookup:main'
[tool.poetry.dependencies]
python = "^3.10"
requests = "^2.32.3"
Sphinx = { version = "^8.1.3", optional = true }
[tool.poetry.extras]
docs = ["Sphinx"]
[tool.poetry.group.dev.dependencies]
pylint = "^3.3.1"
mypy = "^1.13.0"
types-requests = "^2.32.0.20241016"
ipython = "^8.29.0"
pytest = "^8.3.3"
[build-system]
requires = ["poetry_core"]
build-backend = "poetry.core.masonry.api"