-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (49 loc) · 1.7 KB
/
pyproject.toml
File metadata and controls
54 lines (49 loc) · 1.7 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
[project]
name = "cloudx-proxy"
dynamic = ["version"]
description = "SSH proxy command to connect VSCode with cloudX instance using AWS Systems Manager"
authors = [
{name = "easytocloud", email = "info@easytocloud.com"}
]
dependencies = [
"boto3>=1.34.0",
"click>=8.1.0", # For better CLI argument handling than argparse
]
requires-python = ">=3.10"
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["aws", "vscode", "cloud9", "cloudX", "ssm", "ssh", "proxy"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Build Tools",
"Topic :: System :: Systems Administration",
]
[project.urls]
Homepage = "https://github.com/easytocloud/cloudX-proxy"
Repository = "https://github.com/easytocloud/cloudX-proxy"
Issues = "https://github.com/easytocloud/cloudX-proxy/issues"
Changelog = "https://github.com/easytocloud/cloudX-proxy/blob/main/CHANGELOG.md"
[build-system]
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project.scripts]
cloudx-proxy = "cloudx_proxy.cli:cli"
cloudX-proxy = "cloudx_proxy.cli:cli"
[tool.setuptools_scm]
write_to = "cloudx_proxy/_version.py"
version_scheme = "python-simplified-semver"
local_scheme = "no-local-version"
[dependency-groups]
dev = [
"pip-audit>=2.7.0",
"pip-licenses>=5.0.0",
]