mirror of
https://github.com/vinta/awesome-python.git
synced 2026-05-07 14:17:36 -05:00
Bumps [pytest](https://github.com/pytest-dev/pytest) from 9.0.2 to 9.0.3. - [Release notes](https://github.com/pytest-dev/pytest/releases) - [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst) - [Commits](https://github.com/pytest-dev/pytest/compare/9.0.2...9.0.3) --- updated-dependencies: - dependency-name: pytest dependency-version: 9.0.3 dependency-type: direct:development ... Signed-off-by: dependabot[bot] <support@github.com>
32 lines
796 B
TOML
32 lines
796 B
TOML
[project]
|
|
name = "awesome-python"
|
|
version = "0.1.0"
|
|
description = "An opinionated list of awesome Python frameworks, libraries, software and resources."
|
|
authors = [{ name = "Vinta Chen", email = "vinta.chen@gmail.com" }]
|
|
readme = "README.md"
|
|
license = "MIT"
|
|
requires-python = ">=3.13"
|
|
dependencies = []
|
|
|
|
[project.urls]
|
|
Homepage = "https://awesome-python.com/"
|
|
Repository = "https://github.com/vinta/awesome-python"
|
|
|
|
[dependency-groups]
|
|
build = ["httpx==0.28.1", "jinja2==3.1.6", "markdown-it-py==4.0.0"]
|
|
lint = ["ruff==0.15.6"]
|
|
test = ["pytest==9.0.3"]
|
|
dev = [
|
|
{ include-group = "build" },
|
|
{ include-group = "lint" },
|
|
{ include-group = "test" },
|
|
"watchdog==6.0.0",
|
|
]
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["website/tests"]
|
|
pythonpath = ["website"]
|
|
|
|
[tool.ruff]
|
|
line-length = 200
|