File: pyproject.toml

package info (click to toggle)
python-aiosqlite 0.21.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 276 kB
  • sloc: python: 963; makefile: 46; sh: 5
file content (76 lines) | stat: -rw-r--r-- 1,544 bytes parent folder | download
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]
requires = ["flit_core >=3.8,<4"]
build-backend = "flit_core.buildapi"

[project]
name = "aiosqlite"
readme = "README.rst"
license = {file="LICENSE"}
dynamic = ["version", "description"]
authors = [
    {name="Amethyst Reese", email="amethyst@n7.gg"},
]
classifiers = [
    "Development Status :: 5 - Production/Stable",
    "Framework :: AsyncIO",
    "Intended Audience :: Developers",
    "License :: OSI Approved :: MIT License",
    "Topic :: Software Development :: Libraries",
]
requires-python = ">=3.9"
dependencies = [
    "typing_extensions >= 4.0",
]

[project.optional-dependencies]
dev = [
    "attribution==1.7.1",
    "black==24.3.0",
    "build>=1.2",
    "coverage[toml]==7.6.10",
    "flake8==7.0.0",
    "flake8-bugbear==24.12.12",
    "flit==3.10.1",
    "mypy==1.14.1",
    "ufmt==2.5.1",
    "usort==1.0.8.post1",
]
docs = [
    "sphinx==8.1.3",
    "sphinx-mdinclude==0.6.1",
]

[project.urls]
Documentation = "https://aiosqlite.omnilib.dev"
Github = "https://github.com/omnilib/aiosqlite"

[tool.flit.sdist]
exclude = [
    ".github/",
]

[tool.attribution]
name = "aiosqlite"
package = "aiosqlite"
ignored_authors = ["dependabot"]
signed_tags = true
version_file = true

[tool.coverage.run]
branch = true
include = ["aiosqlite/*"]
omit = ["aiosqlite/tests/*"]

[tool.coverage.report]
fail_under = 75
precision = 1
show_missing = true
skip_covered = true

[tool.mypy]
ignore_missing_imports = true
python_version = "3.9"

[[tool.mypy.overrides]]
module = "aiosqlite.tests.perf"
follow_imports = "silent"