-
-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpyproject.toml
More file actions
76 lines (67 loc) · 1.71 KB
/
pyproject.toml
File metadata and controls
76 lines (67 loc) · 1.71 KB
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
70
71
72
73
74
75
76
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling"]
[dependency-groups]
dev = [
"prek==0.3.9",
"pyright==1.1.405",
"ruff==0.13.0",
"toml-sort==0.23.1"
]
docs = [
"hippogriffe==0.2.2",
"griffe==1.7.3",
"mkdocs==1.6.1",
"mkdocs-include-exclude-files==0.1.0",
"mkdocs-material==9.6.7",
"mkdocstrings==0.28.3",
"mkdocstrings-python==1.16.8",
"pygments==2.20.0",
"pymdown-extensions==10.21.2"
]
tests = ["pytest", "trio"]
[project]
authors = [
{email = "contact@kidger.site", name = "Patrick Kidger"}
]
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Programming Language :: Python :: 3"
]
dependencies = []
description = "A tiny event loop for Python."
keywords = ["asyncio", "tinyio", "async", "await"]
license = {file = "LICENSE"}
name = "tinyio"
readme = "README.md"
requires-python = ">=3.11"
urls = {repository = "https://github.com/patrick-kidger/tinyio"}
version = "0.4.0"
[tool.hatch.build]
include = ["tinyio/*"]
reportFunctionMemberAccess = false
reportIncompatibleMethodOverride = true
reportIncompatibleVariableOverride = false
[tool.pyright]
include = ["tinyio", "tests"]
[tool.ruff]
extend-include = ["*.ipynb"]
line-length = 120
src = []
[tool.ruff.lint]
fixable = ["I001", "F401", "UP"]
ignore = ["E402", "E721", "E731", "E741", "F722"]
select = ["E", "F", "I001", "UP"]
[tool.ruff.lint.flake8-import-conventions.extend-aliases]
"collections" = "co"
"functools" = "ft"
"itertools" = "it"
[tool.ruff.lint.isort]
combine-as-imports = true
extra-standard-library = ["typing_extensions"]
lines-after-imports = 2
order-by-type = true
[tool.uv]
default-groups = ["dev", "docs", "tests"]