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 43 44 45 46 47 48 49 50 51 52 53 54
|
[project]
name = "python-picnic-api2"
version = "1.3.1"
description = ""
readme = "README.rst"
license = {text = "Apache-2.0"}
maintainers = [
{ name = "CodeSalat", email = "pypi@codesalat.dev"}
]
authors = [
{ name = "Mike Brink", email = "mjh.brink@icloud.com"},
{ name = "CodeSalat", email = "pypi@codesalat.dev"}
]
urls = {homepage = "https://github.com/codesalatdev/python-picnic-api", repository = "https://github.com/codesalatdev/python-picnic-api"}
requires-python = ">=3.11"
dependencies = [
"requests>=2.24.0",
"typing_extensions>=4.12.2"
]
[tool.ruff]
line-length = 88
indent-width = 4
target-version = "py311"
[tool.ruff.lint]
select = [
# pycodestyle
"E",
# Pyflakes
"F",
# pyupgrade
"UP",
# flake8-bugbear
"B",
# flake8-simplify
"SIM",
# isort
"I",
# flake8-fixme
"FIX"
]
[dependency-groups]
dev = [
"pytest>=8.3.5",
"pytest-cov>=6.0.0",
"python-dotenv>=1.0.1",
"ruff>=0.9.10",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
|