-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
100 lines (91 loc) · 2.25 KB
/
pyproject.toml
File metadata and controls
100 lines (91 loc) · 2.25 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ioc"
version = "0.1.18"
description = "A small dependency injection container based on Symfony2 Dependency Component"
readme = "README.md"
license = "Apache-2.0"
authors = [
{name = "Thomas Rabaix", email = "thomas.rabaix@gmail.com"}
]
maintainers = [
{name = "Thomas Rabaix", email = "thomas.rabaix@gmail.com"}
]
requires-python = ">=3.9"
dependencies = [
"pyyaml",
]
keywords = ["dependency injection", "ioc", "container", "symfony"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"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 :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
]
[project.urls]
Homepage = "https://github.com/rande/python-simple-ioc"
Repository = "https://github.com/rande/python-simple-ioc"
Issues = "https://github.com/rande/python-simple-ioc/issues"
[project.optional-dependencies]
dev = [
"flake8>=6.0.0",
"mypy>=1.0.0",
"build>=0.10.0",
"twine>=4.0.0",
]
test = [
"pytest>=6.0",
]
flask = [
"flask",
"werkzeug",
]
jinja2 = [
"jinja2",
]
redis = [
"redis",
]
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ["ioc*"]
[tool.setuptools.package-data]
"*" = ["*.yml", "*.yaml", "*.html"]
[tool.mypy]
python_version = "3.9"
warn_return_any = false
warn_unused_configs = true
disallow_untyped_defs = false
disallow_incomplete_defs = false
check_untyped_defs = false
disallow_untyped_decorators = false
no_implicit_optional = false
warn_redundant_casts = false
warn_unused_ignores = false
warn_no_return = false
warn_unreachable = false
strict_equality = false
ignore_errors = false
[[tool.mypy.overrides]]
module = [
"yaml.*",
"element.*",
"redis.*",
"jinja2.*",
"flask.*",
"importlib_resources.*",
]
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "ioc.extra.*"
ignore_errors = true