-
Notifications
You must be signed in to change notification settings - Fork 26
/
pyproject.toml
36 lines (32 loc) · 986 Bytes
/
pyproject.toml
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build]
exclude = ["tccli/examples"]
[project]
name = "tccli"
version = "3.0.1216.1"
authors = [
{ name="tencentcloudapi", email="[email protected]" },
]
description = "Universal Command Line Environment for Tencent Cloud"
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
]
dependencies = [
"jmespath==0.10.0",
"six==1.16.0",
"tencentcloud-sdk-python>=3.0.1216",
]
[project.urls]
"Homepage" = "https://github.com/TencentCloud/tencentcloud-cli"
"Bug Tracker" = "https://github.com/TencentCloud/tencentcloud-cli/issues"
[project.scripts]
tccli = "tccli.main:main"
tccli_completer = "tccli.completer:complete"