python/pyproject.toml
RealStickman 8ba9a1e193
Some checks failed
ci/woodpecker/push/release Pipeline was successful
ci/woodpecker/push/linting Pipeline failed
ci/woodpecker/tag/linting Pipeline failed
ci/woodpecker/tag/release Pipeline was successful
Update 0.0.15
2022-10-01 11:09:22 +02:00

43 lines
1.0 KiB
TOML

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "woodpecker-realstickman"
version = "0.0.15"
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" = "https://gitea.exu.li/woodpecker-test/python"
"Bug Tracker" = "https://gitea.exu.li/woodpecker-test/python/issues"
[tool.hatch.build]
include = [
"woodpeckerpy/*.py",
"woodpeckerpy/py.typed"
]
exclude = []
[tool.pyright]
#https://github.com/microsoft/pyright/blob/main/docs/configuration.md
include = [
"woodpeckerpy/main.py"
]
typeCheckingMode = "strict"
reportUnusedImport = "warning"