-
Notifications
You must be signed in to change notification settings - Fork 15
/
pyproject.toml
47 lines (43 loc) · 1.18 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
[tool.poetry]
name = "virustotal-python"
version = "1.1.0"
description = "A Python library to interact with the public VirusTotal v3 and v2 APIs."
authors = ["dbrennand"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/dbrennand/virustotal-python"
repository = "https://github.com/dbrennand/virustotal-python"
keywords = [
"VirusTotal",
"Wrapper",
"Public API",
"Library",
"v3",
"v2"
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
exclude = [".gitignore"]
[tool.poetry.dependencies]
python = "^3.12"
requests = { version = "^2.31.0" }
PySocks = { version = "^1.7.1", optional = true }
[tool.poetry.extras]
socks = ["PySocks"]
[tool.poetry.dev-dependencies]
black = "^24.4.2"
twine = "^5.1.0"
pytest = "^8.2.0"
pytest-mock = "^3.14.0"
requests-mock = "^1.12.1"
pytest-cov = "^5.0.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"