PyVulnerabilityLookup/pyproject.toml
dependabot[bot] 2a415fd84d
build(deps-dev): bump types-requests from 2.31.0.0 to 2.31.0.1
Bumps [types-requests](https://github.com/python/typeshed) from 2.31.0.0 to 2.31.0.1.
- [Commits](https://github.com/python/typeshed/commits)

---
updated-dependencies:
- dependency-name: types-requests
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-05-29 15:08:49 +00:00

47 lines
1.2 KiB
TOML

[tool.poetry]
name = "pyvulnerabilitylookup"
version = "0.0.1"
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',
]
include = ['README.md']
[tool.poetry.scripts]
vulnerability_lookup = 'pyvulnerabilitylookup:main'
[tool.poetry.dependencies]
python = "^3.10"
requests = "^2.31.0"
Sphinx = { version = "^7.0.1", optional = true }
[tool.poetry.extras]
docs = ["Sphinx"]
[tool.poetry.group.dev.dependencies]
pylint = "^2.17.4"
mypy = "^1.3.0"
types-requests = "^2.31.0.1"
ipython = "^8.13.2"
pytest = "^7.3.1"
[build-system]
requires = ["poetry_core"]
build-backend = "poetry.core.masonry.api"