-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (53 loc) · 1.46 KB
/
pyproject.toml
File metadata and controls
62 lines (53 loc) · 1.46 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "o2switch-cli"
dynamic = ["version"]
description = "Interactive CLI for managing o2switch/cPanel domains, subdomains, and DNS records."
readme = "README.md"
requires-python = ">=3.11"
license = "MIT"
authors = [{name = "MNametissa"}]
keywords = ["o2switch", "cpanel", "dns", "cli", "domains"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Internet :: Name Service (DNS)",
]
dependencies = [
"dnspython>=2.6,<3.0",
"httpx>=0.27,<1.0",
"platformdirs>=4.3,<5.0",
"pydantic>=2.8,<3.0",
"pydantic-settings>=2.4,<3.0",
"prompt_toolkit>=3.0,<4.0",
"questionary>=2.0,<3.0",
"rich>=13.7,<15.0",
"typer>=0.12,<1.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.3,<9.0",
"ruff>=0.6,<1.0",
]
[project.scripts]
o2switch-cli = "o2switch_cli.cli.main:run"
[project.urls]
Homepage = "https://github.com/MNametissa/o2switch-cli"
Repository = "https://github.com/MNametissa/o2switch-cli"
[tool.setuptools.packages.find]
include = ["o2switch_cli*"]
[tool.setuptools.dynamic]
version = {attr = "o2switch_cli.__version__"}
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.ruff]
line-length = 120
target-version = "py311"
[tool.ruff.lint]
select = ["B", "E", "F", "I", "UP"]
ignore = ["B008"]