python/pyproject.toml
RealStickman 637f2f0ff3
Some checks failed
ci/woodpecker/tag/linting Pipeline failed
ci/woodpecker/tag/release Pipeline failed
use explicit testpypi url
2022-09-12 19:25:33 +02:00

43 lines
973 B
TOML

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "woodpecker-realstickman"
version = "0.0.8"
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 = [
"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"