-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
69 lines (63 loc) · 1.77 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
63
64
65
66
67
68
69
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "hrefs"
authors = [{name = "Jaakko Moisio", email = "[email protected]"}]
classifiers = [
"License :: OSI Approved :: MIT License",
"Environment :: Web Environment",
"Framework :: FastAPI",
"Framework :: Pydantic",
"Framework :: Pydantic :: 1",
"Framework :: Pydantic :: 2",
"Framework :: Hypothesis",
"Framework :: Pytest",
"Framework :: tox",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Internet",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
]
license = {file = "LICENSE"}
readme = "README.rst"
dynamic = ["version", "description"]
dependencies = [
"pydantic>=1.8",
"starlette",
]
requires-python=">=3.9"
[project.optional-dependencies]
test = [
"tox>=4.24",
"pytest>=8.3",
"hypothesis>=6.125",
"fastapi>=0.115",
"black>=25.1",
"pylint>=3.3",
"mypy>=1.15",
"httpx>=0.28",
"pytest-skip-slow",
"coverage>=7.6",
]
doc = [
"sphinx>=8.1; python_version>=\"3.11\"",
"sphinx-rtd-theme>=3.0; python_version>=\"3.11\"",
]
[project.urls]
Source = "https://github.com/jasujm/hrefs"
Documentation = "https://hrefs.readthedocs.io/"
[project.entry-points.hypothesis]
_ = "hrefs._hypothesis_plugin:_hypothesis_setup_hook"
[tool.mypy]
ignore_missing_imports = true