-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (42 loc) · 1.14 KB
/
Copy pathpyproject.toml
File metadata and controls
50 lines (42 loc) · 1.14 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
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[project]
name = "circleci-env-cli"
version = "0.3.1"
description = "CLI tool for managing CircleCI contexts and environment vars"
readme = "README.md"
license = "MIT"
authors = [{ name = "Phillipe Smith", email = "phsmithcc@gmail.com" }]
keywords = ["circleci", "cli", "api"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
]
requires-python = ">=3.10"
dependencies = [
"click>=8.3.2",
"requests>=2.33.1",
"pycircleci>=0.7.0",
]
[project.urls]
Homepage = "https://github.com/phsmith/circleci-env-cli"
[project.scripts]
circleci-env-cli = "circleci_env_cli:cli"
[tool.setuptools]
py-modules = ["circleci_env_cli"]
[dependency-groups]
dev = [
"ruff>=0.15.9",
"bandit[toml]>=1.9.4",
]
[tool.ruff]
line-length = 120
[tool.ruff.lint]
select = ["E", "F", "W", "I", "UP"]
[tool.bandit]
exclude_dirs = [".venv", "dist", "build"]