-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (37 loc) · 1.1 KB
/
pyproject.toml
File metadata and controls
44 lines (37 loc) · 1.1 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "netcup-api"
version = "0.1.0"
description = "Python client library and CLI for the netcup Server Control Panel (SCP) REST API"
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [{ name = "Antoine Chenais" }]
keywords = ["netcup", "scp", "vps", "api", "cli", "servercontrolpanel"]
classifiers = [
"Programming Language :: Python :: 3",
"Environment :: Console",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
]
dependencies = [
"httpx>=0.27",
"typer>=0.12",
"rich>=13",
]
[project.urls]
Homepage = "https://github.com/fullya99/netcup-cli"
Issues = "https://github.com/fullya99/netcup-cli/issues"
[project.scripts]
netcup = "netcup_api.cli:main"
[project.optional-dependencies]
dev = ["pytest>=8", "ruff>=0.5"]
[tool.hatch.build.targets.wheel]
packages = ["netcup_api"]
[tool.hatch.build.targets.wheel.force-include]
"netcup_api/openapi.json" = "netcup_api/openapi.json"
[tool.ruff]
line-length = 100
target-version = "py310"