-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
42 lines (38 loc) · 1.14 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
[project]
name = "update-whitelist"
dynamic = ["version"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
description = "A tool to update cloud provider whitelists"
requires-python = ">=3.9"
dependencies = [
"pyyaml~=6.0.1",
"huaweicloudsdkcore~=3.1.99",
"huaweicloudsdkvpc~=3.1.99",
"pydantic~=2.7.4",
"requests~=2.32.3", "APScheduler~=3.10.4",
"tencentcloud_sdk_python_common~=3.0.1174",
"tencentcloud_sdk_python_vpc~=3.0.1174"
]
[project.optional-dependencies]
dev = [
"pytest~=8.2.2",
"pytest-mock~=3.14.0",
"pytest-cov~=5.0.0"
]
[build-system]
requires = ["setuptools>=45", "wheel", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[tool.pytest.ini_options]
addopts = "--import-mode=importlib"
pythonpath = ["."]
[tool.setuptools_scm]
write_to = "update_whitelist/_version.py"