blob: 5c6435d6ddedb724ec3bde7d74595d106bca66c9 (
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 = "domain_manager:main"
[tool.hatch.build.targets.wheel]
packages = ["."]
|