-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (43 loc) · 1012 Bytes
/
pyproject.toml
File metadata and controls
49 lines (43 loc) · 1012 Bytes
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
[project]
name = "githubscript"
version = "0.1.0"
description = "Taskcluster worker in charge of updating Github and notably Github Releases"
url = "https://github.com/mozilla-releng/scriptworker-scripts/"
license = "MPL-2.0"
readme = "README.md"
authors = [
{ name = "Mozilla Release Engineering", email = "release+python@mozilla.com" }
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"aiohttp_retry >= 2.3",
"github3.py",
"scriptworker",
"scriptworker-client",
"taskcluster",
]
[dependency-groups]
dev = [
"tox",
"tox-uv",
"coverage",
"pytest",
"pytest-asyncio>=0.6.0",
"pytest-cov",
]
[tool.uv.sources]
scriptworker-client = { workspace = true }
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build]
include = [
"src",
]
[tool.hatch.build.targets.wheel.sources]
"src/" = ""
[project.scripts]
githubscript = "githubscript.script:main"