-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
40 lines (31 loc) · 958 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
[project]
name = "gha_runner"
version = "0.4.0"
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"]
[project.optional-dependencies]
test = [
"pytest",
"pytest-cov",
"moto[ec2]",
"responses"
]
[build-system]
# We are not going to add versioningit at this time
requires = ["setuptools >= 61.2"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
gha_runner = ["*.templ", "templates/*.templ"]
[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"]