-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
50 lines (44 loc) · 1.36 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
[project]
name = "octodns-infomaniak"
version = "0.0.0"
description = "Infomaniak provider for octoDNS"
readme = "README.md"
authors = [
{name = "Ludovic Ortega", email = "[email protected]"}
]
keywords = ["dns", "octodns", "infomaniak"]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
"License :: OSI Approved :: CEA CNRS Inria Logiciel Libre License, version 2.1 (CeCILL-2.1)",
"Topic :: Utilities",
]
requires-python = ">=3.9,<4.0.0"
dependencies = [
"octodns>=1.10.0,<2.0.0",
"requests>=2.32.0"
]
[project.urls]
Homepage = "https://github.com/M0NsTeRRR/octodns-infomaniak"
Repository = "https://github.com/M0NsTeRRR/octodns-infomaniak"
Issues = "https://github.com/M0NsTeRRR/octodns-infomaniak/issues"
Funding = "https://ko-fi.com/ludovicortega"
[project.optional-dependencies]
dev = [
"pytest~=8.3.3",
"pytest-cov~=6.0.0",
"responses~=0.25.3",
"ruff~=0.8.0"
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/octodns_infomaniak"]