-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
103 lines (90 loc) · 2.24 KB
/
Copy pathpyproject.toml
File metadata and controls
103 lines (90 loc) · 2.24 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
# SPDX-FileCopyrightText: 2025 Alexandre Gomes Gaigalas <alganet@gmail.com>
#
# SPDX-License-Identifier: ISC
[build-system]
requires = ["setuptools", "wheel", "Cython"]
build-backend = "setuptools.build_meta"
[project]
name = "apywire"
version = "1.0.6"
description = "A package to wire up objects"
readme = "README.md"
license = "ISC"
authors = [{name = "Alexandre Gomes Gaigalas", email = "alganet@gmail.com"}]
maintainers = [{name = "Alexandre Gomes Gaigalas", email = "alganet@gmail.com"}]
keywords = ["object", "wiring", "dependency", "injection"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = []
requires-python = ">=3.12"
[project.urls]
Homepage = "https://github.com/alganet/apywire"
Repository = "https://github.com/alganet/apywire"
Issues = "https://github.com/alganet/apywire/issues"
[project.optional-dependencies]
dev = [
"auditwheel",
"black",
"build",
"coverage",
"Cython",
"flake8-pyproject",
"flake8",
"isort",
"mike",
"mkdocs-autorefs",
"mkdocs-material",
"mkdocs",
"mkdocstrings[python]",
"mypy>=2.1",
"pygments>=2.20",
"pymdown-extensions>=10.21.2",
"pytest-cov",
"pytest",
"reuse",
"setuptools",
"twine",
"tomli_w",
"types-setuptools",
"wheel",
]
[tool.setuptools.packages.find]
where = ["."]
[tool.setuptools.package-data]
apywire = ["py.typed"]
[tool.black]
exclude = ".venv"
line-length = 79
[tool.isort]
profile = "black"
line_length = 79
[tool.flake8]
exclude = [".venv"]
max-line-length = 79
ignore = ["E203", "E704", "W503"]
[tool.mypy]
exclude = [".venv"]
mypy_path = "."
strict = true
disallow_any_unimported = true
disallow_any_decorated = true
disallow_any_explicit = true
disallow_subclassing_any = true
disallow_any_expr = true
warn_return_any = true
warn_unused_configs = true
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.coverage.run]
branch = true
source = ["apywire"]
[tool.coverage.report]
show_missing = true
fail_under = 95