-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
35 lines (30 loc) · 925 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
[project]
name = "github-autolabeler"
version = "0.0.1"
description = "Python3 utility for easy labelling/triaging of GitHub PRs/Issues."
authors = [
{ name = "Cloudbase Solutions Srl", email = "support@cloudbasesolutions.com" },
]
license = { file = "LICENSE" }
readme = "README.rst"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GPLv3",
"Operating System :: OS Independent",
]
# NOTE(aznashwan): `match` statements require 3.10.
requires-python = ">=3.10"
dependencies = [
"pyyaml",
"PyGithub",
]
[project.urls]
"Homepage" = "https://github.com/cloudbase/github-autolabeler"
"Bug Tracker" = "https://github.com/cloudbase/github-autolabeler/issues"
[build-system]
requires = ["setuptools >= 61.0.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["autolabeler"]
[project.scripts]
gh-auto-labeler = "autolabeler.main:main"