-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
62 lines (52 loc) · 1.44 KB
/
pyproject.toml
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
55
56
57
58
59
60
61
62
[project]
name = "fluent-assertions"
version = "0.1.4"
description = "Fluent API for assertions supporting pytest with focus on developer experience."
dependencies = [
"pytest>=7.0.0",
]
authors = [
{ name = "Victor Künstler"}
]
readme = "README.md"
requires-python = ">= 3.12"
license = {file = "LICENSE"}
keywords = ["pytest", "fluent", "fluentAPI", "assertions", "fluent assertions", "testing", "typing"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Testing",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.12",
]
[project.urls]
Repository = "https://github.com/VictorKuenstler/fluent-assertions.git"
Issues = "https://github.com/VictorKuenstler/fluent-assertions/issues"
Documentation = "https://victorkuenstler.github.io/fluent-assertions/fluent_assertions.html"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.rye]
managed = true
dev-dependencies = [
"pyright>=1.1.379",
"lazydocs>=0.4.8",
"pdoc>=14.7.0",
"pytest-cov>=5.0.0",
"pre-commit>=3.8.0",
]
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/fluent_assertions"]
[tool.rye.scripts]
devserver = { cmd = "pyright" }
[tool.pytest.ini_options]
testpaths = [
"tests"
]
[tool.pyright]
venv = ".venv"
include = ["src"]
pythonVersion = "3.12"
reportMissingTypeStubs = true