-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (51 loc) · 1.51 KB
/
pyproject.toml
File metadata and controls
55 lines (51 loc) · 1.51 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
[project]
name = "npm-cli"
version = "0.1.0"
description = "Command-line tool for managing Nginx Proxy Manager via API"
readme = "README.md"
authors = [
{ name = "dan", email = "dan@codesushi.com" }
]
requires-python = ">=3.11"
license = { file = "LICENSE" }
keywords = ["nginx", "proxy-manager", "npm", "cli", "docker", "ssl", "certificate"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: System :: Systems Administration",
"Topic :: Internet :: Proxy Servers",
"Topic :: Security",
"Environment :: Console",
]
dependencies = [
"docker>=7.1.0",
"httpx>=0.28.1",
"pydantic>=2.12.5",
"pydantic-settings>=2.12.0",
"python-dotenv>=1.2.1",
"rich>=14.2.0",
"typer>=0.21.0",
]
[project.urls]
Homepage = "https://github.com/dbachelder/npm-cli"
Repository = "https://github.com/dbachelder/npm-cli"
Issues = "https://github.com/dbachelder/npm-cli/issues"
Documentation = "https://github.com/dbachelder/npm-cli#readme"
[project.scripts]
npm-cli = "npm_cli.__main__:main"
[build-system]
requires = ["uv_build>=0.9.14,<0.10.0"]
build-backend = "uv_build"
[dependency-groups]
dev = [
"pytest>=9.0.2",
"pytest-httpx>=0.36.0",
"pytest-mock>=3.15.1",
"ruff>=0.14.10",
"testcontainers>=4.13.3",
]