mirror of
https://github.com/cve-search/pyvariot.git
synced 2025-02-05 03:16:24 +00:00
chg: Bump deps
This commit is contained in:
parent
b6e02adeb9
commit
8e9d58f52c
4 changed files with 364 additions and 514 deletions
|
@ -3,14 +3,14 @@
|
|||
exclude: "tests/data"
|
||||
repos:
|
||||
- repo: https://github.com/pre-commit/pre-commit-hooks
|
||||
rev: v4.6.0
|
||||
rev: v5.0.0
|
||||
hooks:
|
||||
- id: trailing-whitespace
|
||||
- id: end-of-file-fixer
|
||||
- id: check-yaml
|
||||
- id: check-added-large-files
|
||||
- repo: https://github.com/asottile/pyupgrade
|
||||
rev: v3.17.0
|
||||
rev: v3.19.1
|
||||
hooks:
|
||||
- id: pyupgrade
|
||||
args: [--py38-plus]
|
||||
|
|
|
@ -1,9 +1,12 @@
|
|||
version: 2
|
||||
build:
|
||||
os: "ubuntu-22.04"
|
||||
os: "ubuntu-lts-latest"
|
||||
tools:
|
||||
python: "3"
|
||||
|
||||
sphinx:
|
||||
configuration: docs/source/conf.py
|
||||
|
||||
python:
|
||||
install:
|
||||
- method: pip
|
||||
|
|
823
poetry.lock
generated
823
poetry.lock
generated
File diff suppressed because it is too large
Load diff
|
@ -1,48 +1,46 @@
|
|||
[tool.poetry]
|
||||
[project]
|
||||
name = "pyvariot"
|
||||
version = "0.2.0"
|
||||
version = "0.2.1"
|
||||
description = "Python CLI and module to query the VARIoT IoT vulnerabilities and exploits databases"
|
||||
authors = ["Raphaël Vinot <raphael.vinot@circl.lu>"]
|
||||
authors = [{name="Raphaël Vinot", email="raphael.vinot@circl.lu"}]
|
||||
license = "BSD-3-Clause"
|
||||
readme = "README.md"
|
||||
requires-python = ">=3.10"
|
||||
|
||||
dynamic = [ "classifiers" ]
|
||||
|
||||
dependencies = [
|
||||
"requests (>=2.32.3)"
|
||||
]
|
||||
|
||||
[project.urls]
|
||||
repository = "https://github.com/cve-search/pyvariot"
|
||||
documentation = "https://pyvariot.readthedocs.io/en/latest/"
|
||||
|
||||
readme = "README.md"
|
||||
|
||||
[tool.poetry]
|
||||
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]
|
||||
[project.scripts]
|
||||
pyvariot = 'pyvariot:main'
|
||||
|
||||
[tool.poetry.dependencies]
|
||||
python = "^3.10"
|
||||
requests = "^2.32.3"
|
||||
Sphinx = { version = "^8.1.0", optional = true }
|
||||
|
||||
[tool.poetry.extras]
|
||||
docs = ["Sphinx"]
|
||||
[project.optional-dependencies]
|
||||
docs = ["Sphinx (>=8.1.3)"]
|
||||
|
||||
[tool.poetry.group.dev.dependencies]
|
||||
pylint = "^3.3.1"
|
||||
mypy = "^1.11.2"
|
||||
types-requests = "^2.32.0.20240914"
|
||||
ipython = "^8.28.0"
|
||||
pytest = "^8.3.3"
|
||||
pylint = "^3.3.4"
|
||||
mypy = "^1.14.1"
|
||||
types-requests = "^2.32.0.20241016"
|
||||
pytest = "^8.3.4"
|
||||
|
||||
[build-system]
|
||||
requires = ["poetry_core"]
|
||||
requires = ["poetry-core>=2.0"]
|
||||
build-backend = "poetry.core.masonry.api"
|
||||
|
|
Loading…
Add table
Reference in a new issue