28 lines
763 B
TOML
28 lines
763 B
TOML
[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*"]
|