-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (35 loc) · 1.01 KB
/
pyproject.toml
File metadata and controls
46 lines (35 loc) · 1.01 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
[project]
name = "gha_runner"
description = "A GitHub Runner for deploying on cloud backends"
authors = [
{ name = "Ethan Holz", email = "ethan.holz@omsf.io" },
{ name = "David W.H. Swenson", email = "david.swenson@omsf.io" },
]
readme = "README.md"
requires-python = ">= 3.11"
dependencies = ["requests"]
license.file = "LICENSE"
dynamic = ["version"]
[project.optional-dependencies]
test = ["pytest", "pytest-cov", "responses"]
docs = ["mkdocs", "mkdocstrings[python]", "mkdocs-llmstxt"]
[build-system]
requires = ["setuptools >= 61.2", "versioningit"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
gha_runner = ["*.templ", "templates/*.templ"]
[tool.versioningit]
pep440 = true
[tool.coverage.report]
exclude_also = ["raise NotImplementedError"]
[tool.pytest.ini_options]
markers = [
"slow: marks test as slow",
"main: marks the test for the main module",
]
[tool.ruff]
line-length = 80
[tool.ruff.lint]
select = ["F", "E", "N"]