-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
48 lines (36 loc) · 998 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
37
38
39
40
41
42
43
44
45
46
47
[project]
name = "gha_runner"
description = "A GitHub Runner for deploying on cloud backends"
authors = [{ name = "Ethan Holz", email = "[email protected]" }, {name = "David W.H. Swenson", email = "[email protected]"}]
readme = "README.md"
requires-python = ">= 3.11"
dependencies = ["boto3", "requests"]
license.file = "LICENSE"
dynamic = ["version"]
[project.optional-dependencies]
test = [
"pytest",
"pytest-cov",
"moto[ec2]",
"responses"
]
[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"]