-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
executable file
·76 lines (67 loc) · 1.86 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
[build-system]
requires = ["hatchling>=1.12.2"]
build-backend = "hatchling.build"
[project]
name = "pytmv1"
description = "Python library for Trend Micro Vision One"
license = "Apache-2.0"
readme = "README.md"
dynamic = ["version"]
requires-python = ">=3.8"
authors = [
{ name = "Thomas Legros", email = "[email protected]" }
]
maintainers = [
{ name = "TrendATI", email = "[email protected]"},
]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries",
]
dependencies = [
"beautifulsoup4 ~= 4.11.1",
"requests ~= 2.32.3",
"pydantic ~= 2.5.3",
]
[project.optional-dependencies]
dev = [
"hatch ~= 1.6.3",
"psutil ~= 5.9.4",
"pytest ~= 7.2.0",
"pytest-mock ~= 3.10.0",
"pytest-cov ~= 4.0.0",
]
[project.urls]
"Source" = "https://github.com/TrendATI/pytmv1"
"Issues" = "https://github.com/TrendATI/pytmv1/issues"
[tool.hatch.build.targets.sdist]
exclude = [".github", "template", "tests"]
[tool.hatch.version]
path = "src/pytmv1/__about__.py"
[tool.black]
target-version = ["py37"]
line-length = 79
preview = true
color = true
[tool.isort]
profile = "black"
line_length = 79
color_output = true
[tool.mypy]
python_version = "3.8"
exclude = ["dist", "template", "tests", "venv"]
show_column_numbers = true
warn_unused_configs = true
pretty = true
strict = true
[tool.pytest.ini_options]
addopts = "--show-capture=log -s"