-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
63 lines (51 loc) · 1.14 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[build-system]
requires = ["setuptools>=65.5"]
build-backend = "setuptools.build_meta"
[project]
authors = [
{name = "CodeRed LLC", email = "[email protected]"}
]
classifiers = [
"Environment :: Console",
"Programming Language :: Python :: 3",
]
dependencies = [
"certifi",
"paramiko==3.4.*",
"rich==13.7.*",
]
description = "The official CodeRed Cloud command line tool."
dynamic = ["version"]
license = {file = "LICENSE.txt"}
name = "cr"
readme = "README.md"
requires-python = ">=3.8"
[project.scripts]
cr = "cr.cli:main"
[project.urls]
Homepage = "https://www.codered.cloud/cli/"
Source = "https://github.com/coderedcorp/cr"
[tool.coverage.run]
source = ["cr"]
omit = [
".*",
"venv/*",
]
[tool.mypy]
ignore_missing_imports = true
[tool.pytest.ini_options]
addopts = "--cov cr --cov-report html"
[tool.ruff]
line-length = 80
[tool.ruff.lint]
extend-select = ["I"]
[tool.ruff.lint.isort]
case-sensitive = false
force-single-line = true
lines-after-imports = 2
[tool.setuptools]
packages = ["cr", "cr.templates"]
[tool.setuptools.package-data]
"cr.templates" = ["*"]
[tool.setuptools.dynamic]
version = {attr = "cr.VERSION"}