pyvariot/pyproject.toml

47 lines
1.1 KiB
TOML
Raw Normal View History

2025-02-03 23:21:36 +01:00
[project]
2024-06-07 15:54:49 +02:00
name = "pyvariot"
2025-02-03 23:21:36 +01:00
version = "0.2.1"
2024-06-07 15:54:49 +02:00
description = "Python CLI and module to query the VARIoT IoT vulnerabilities and exploits databases"
2025-02-03 23:21:36 +01:00
authors = [{name="Raphaël Vinot", email="raphael.vinot@circl.lu"}]
2024-06-07 11:07:52 +02:00
license = "BSD-3-Clause"
2025-02-03 23:21:36 +01:00
readme = "README.md"
requires-python = ">=3.10"
dynamic = [ "classifiers" ]
dependencies = [
"requests (>=2.32.3)"
]
[project.urls]
2024-06-07 16:31:58 +02:00
repository = "https://github.com/cve-search/pyvariot"
documentation = "https://pyvariot.readthedocs.io/en/latest/"
2024-06-07 11:07:52 +02:00
2025-02-03 23:21:36 +01:00
[tool.poetry]
2024-06-07 11:07:52 +02:00
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Operating System :: POSIX :: Linux',
'Intended Audience :: Science/Research',
'Intended Audience :: Telecommunications Industry',
'Intended Audience :: Information Technology',
'Topic :: Security',
'Topic :: Internet',
]
2025-02-03 23:21:36 +01:00
[project.scripts]
2024-06-07 15:54:49 +02:00
pyvariot = 'pyvariot:main'
2024-06-07 11:07:52 +02:00
2025-02-03 23:21:36 +01:00
[project.optional-dependencies]
docs = ["Sphinx (>=8.1.3)"]
2024-06-07 11:07:52 +02:00
[tool.poetry.group.dev.dependencies]
2025-02-03 23:21:36 +01:00
pylint = "^3.3.4"
mypy = "^1.14.1"
types-requests = "^2.32.0.20241016"
pytest = "^8.3.4"
2024-06-07 11:07:52 +02:00
[build-system]
2025-02-03 23:21:36 +01:00
requires = ["poetry-core>=2.0"]
2024-06-07 11:07:52 +02:00
build-backend = "poetry.core.masonry.api"