1
0
mirror of https://codeberg.org/fediverse/fep.git synced 2026-08-05 11:46:04 +00:00
Files
fep/scripts/pyproject.toml
T
silverpill abcdfc4c08 Fix tests (#802)
There was a conflict between `create_site_pages.py` and  `pytest`. The former added python files to `docs` and `build` directories, causing `pytest scripts` to fail.

Reviewed-on: https://codeberg.org/fediverse/fep/pulls/802
Reviewed-by: helge <helge@noreply.codeberg.org>
Co-authored-by: silverpill <silverpill@firemail.cc>
Co-committed-by: silverpill <silverpill@firemail.cc>
2026-03-23 17:39:17 +01:00

22 lines
447 B
TOML

[project]
name = "fep"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"mkdocs>=1.6.1",
"mkdocs-material[imaging]>=9.5.40",
"pytest>=8.3.4",
"markdown>=3.7",
"pytest-watcher>=0.4.3",
"markdown-callouts>=0.4.0",
"fep",
"nh3>=0.3.0",
]
[tool.setuptools]
packages = ["fep_tools"]
[tool.pytest.ini_options]
norecursedirs = ["docs", "build"]