-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
79 lines (72 loc) · 2.07 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
70
71
72
73
74
75
76
77
78
79
[project]
name = "opyoid"
description = "Dependency injection library"
authors = [{ name = "Illuin Technology", email = "[email protected]" }]
maintainers = [{ name = "Illuin Technology", email = "[email protected]" }]
requires-python = ">=3.8"
readme = "README.md"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed"
]
version = "0.0.0"
dependencies = [
"attrs>=19.1.0,<25.0.0",
]
[project.optional-dependencies]
dev = [
"black==24.8.0",
"build==1.2.2.post1",
"mypy==1.13.0",
"pytest==8.3.3",
"pytest-cov==5.0.0",
"pylint==3.2.7",
"setuptools==75.1.0",
"twine==5.1.1",
"wheel==0.44.0",
]
[project.urls]
"Homepage" = "https://github.com/illuin-tech/opyoid"
"Bug Reports" = "https://github.com/illuin-tech/opyoid/issues"
"Source" = "https://github.com/illuin-tech/opyoid/"
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
zip-safe = false
platforms = ["any"]
packages.find.include = ["opyoid", "opyoid.*"]
package-data.opyoid = ["py.typed"]
[tool.coverage]
run.source = ["opyoid"]
run.branch = true
report.exclude_also = [
"def __repr__",
"raise NotImplementedError",
"if __name__ == .__main__.:",
"if TYPE_CHECKING:",
]
[tool.mypy]
exclude = [
"env",
]
strict = true
implicit_reexport = true
ignore_missing_imports = true
warn_unused_ignores = false
[[tool.mypy.overrides]]
module = ["tests.*", "tests_e2e.*"]
allow_untyped_defs = true
disable_error_code = 'var-annotated, no-untyped-def'