62 lines
1.4 KiB
TOML
62 lines
1.4 KiB
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "release-gitter"
|
|
version = "2.1.1"
|
|
description = "Easily download releases from sites like Github and Gitea"
|
|
readme = "README.md"
|
|
license = "MIT"
|
|
classifiers = [
|
|
"Programming Language :: Python :: 3",
|
|
"Operating System :: OS Independent",
|
|
"License :: OSI Approved :: MIT License",
|
|
]
|
|
authors = [
|
|
{ name = "Ian Fijolek", email = "iamthefij@gmail.com" }
|
|
]
|
|
maintainers = [
|
|
{ name = "Ian Fijolek", email = "iamthefij@gmail.com" }
|
|
]
|
|
requires_python = ">=3.7"
|
|
dependencies = ["requests"]
|
|
|
|
[project.optional-dependencies]
|
|
builder = [
|
|
"toml",
|
|
"wheel",
|
|
]
|
|
|
|
[project.scripts]
|
|
release-gitter = "release_gitter:main"
|
|
|
|
[project.urls]
|
|
Homepage = "https://git.iamthefij.com/iamthefij/release-gitter"
|
|
|
|
[tool.hatch.build]
|
|
include = ["release_gitter.py", "pseudo_builder.py"]
|
|
|
|
[tool.hatch.envs.test]
|
|
dependencies = [
|
|
"coverage",
|
|
]
|
|
|
|
[tool.hatch.envs.test.scripts]
|
|
run = [
|
|
"coverage erase",
|
|
"coverage run --source=release_gitter -m unittest discover . *_test.py",
|
|
"coverage report -m # --fail-under 70",
|
|
]
|
|
|
|
[[tool.hatch.envs.test.matrix]]
|
|
python = ["3", "3.7", "3.8", "3.9", "3.10", "3.11"]
|
|
|
|
[tool.hatch.envs.lint]
|
|
detached = true
|
|
dependencies = ["pre-commit"]
|
|
|
|
[tool.hatch.envs.lint.scripts]
|
|
all = "pre-commit run --all-files"
|
|
install-hooks = "pre-commit install --install-hooks"
|