2022-09-12 17:14:43 +02:00
|
|
|
[build-system]
|
|
|
|
requires = ["hatchling"]
|
|
|
|
build-backend = "hatchling.build"
|
|
|
|
|
|
|
|
[project]
|
|
|
|
name = "woodpecker-realstickman"
|
|
|
|
version = "0.0.1"
|
|
|
|
authors = [
|
|
|
|
{ name="RealStickman", email="mrc@frm01.net" },
|
|
|
|
]
|
|
|
|
description = "A Test for deploying Python packages using Woodpecker"
|
|
|
|
readme = "README.md"
|
|
|
|
license = "GPL-3.0-or-later"
|
|
|
|
requires-python = ">=3.10"
|
|
|
|
classifiers = [
|
|
|
|
"Development Status :: 3 - Alpha",
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
"Programming Language :: Python :: 3.10",
|
|
|
|
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
|
|
|
|
"Operating System :: OS Independent",
|
|
|
|
]
|
|
|
|
dependencies = [
|
|
|
|
]
|
|
|
|
|
|
|
|
[project.urls]
|
|
|
|
"Homepage" = ""
|
|
|
|
"Bug Tracker" = ""
|
|
|
|
|
|
|
|
[tool.hatch.build]
|
|
|
|
include = [
|
2022-09-12 17:31:22 +02:00
|
|
|
"woodpeckerpy/*.py",
|
|
|
|
"woodpeckerpy/py.typed"
|
2022-09-12 17:14:43 +02:00
|
|
|
]
|
|
|
|
exclude = []
|
|
|
|
|
|
|
|
[tool.pyright]
|
|
|
|
#https://github.com/microsoft/pyright/blob/main/docs/configuration.md
|
|
|
|
typeCheckingMode = "strict"
|
|
|
|
reportUnusedImport = "warning"
|