blob: 3fde39614336a73f2548547e4a482cd0663abbbf (
plain)
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
|
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "regflow"
version = "0.1.0"
description = "Domain registration and DNS management automation tool"
requires-python = ">=3.8.1"
dependencies = [
"requests>=2.31.0",
"python-dotenv>=1.0.0",
"cloudflare>=2.19.0",
"pydantic>=2.5.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
]
[project.scripts]
regflow = "regflow.domains:main"
[tool.hatch.build.targets.wheel]
packages = ["regflow"]
|