-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
42 lines (38 loc) · 1.19 KB
/
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
[build-system]
requires = ["setuptools", "setuptools_scm"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
include = ["repotracker*"]
namespaces = false
[project]
name = "repotracker"
authors = [
{name = "Mike Bonnet", email = "[email protected]"},
]
maintainers = [
{name = "Jakub Micanek", email = "[email protected]"}
]
description = "A microservice for tracking container repositories, and publishing a message when they change"
readme = "README.md"
requires-python = ">=3.8"
keywords = ["container", "tracking"]
license = {text = "GPLv3"}
urls = { code = "https://github.com/release-engineering/repotracker" }
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"requests",
]
dynamic = ["version"]
[tool.setuptools_scm]
[project.scripts]
repotracker = "repotracker.cli:main"