初始版本

This commit is contained in:
黄思俊
2026-03-23 14:51:33 +08:00
parent eeb54f7538
commit b4327e9769
14 changed files with 4313 additions and 228 deletions

27
pyproject.toml Normal file
View File

@@ -0,0 +1,27 @@
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "python-jms-clienter"
version = "0.1.0"
description = "JumpServer API client for listing servers/users and creating connection tokens"
readme = "README.md"
requires-python = ">=3.6"
license = {file = "LICENSE"}
dependencies = [
"requests>=2.27.1,<2.28; python_version < '3.7'",
"requests>=2.31.0; python_version >= '3.7'",
]
classifiers = [
"License :: OSI Approved :: GNU Affero General Public License v3",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
]
[project.scripts]
jms-client = "python_jms_clienter.cli:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["python_jms_clienter*"]