blob: 80447037073ca3669b88c75a5437691ee9d40b4c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
[project]
name = "porkbun"
version = "0.1.0"
description = "Bulk domain price query tool using Porkbun API"
requires-python = ">=3.10"
dependencies = [
"click>=8.1.7",
"httpx>=0.27.0",
"tenacity>=8.2.3",
"rich>=13.7.0",
]
[project.scripts]
porkbun = "porkbun.cli:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = []
|