-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (41 loc) · 963 Bytes
/
Copy pathpyproject.toml
File metadata and controls
49 lines (41 loc) · 963 Bytes
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
[project]
name = "pydi-framework"
version = "1.0.0"
description = "Python Dependency Injection Framework"
readme = "README.md"
license = "MIT"
license-files = ["LICENSE.txt"]
authors = [
{ name = "Mounir Melzi" },
]
maintainers = [
{ name = "Mounir Melzi" },
]
keywords = [
"Dependency injection",
"DI",
"Design patterns",
"Factory",
"Singleton",
"Lazy Singleton",
]
classifiers = [
"Programming Language :: Python",
]
requires-python = ">=3.14"
dependencies = []
[dependency-groups]
dev = [
"pytest>=9.0.2",
]
[project.urls]
Homepage = "https://mounirmelzi.github.io/pydi-framework/"
Documentation = "https://mounirmelzi.github.io/pydi-framework/"
Repository = "https://github.com/mounirmelzi/pydi-framework.git"
Download = "https://pypi.org/project/pydi-framework/"
[tool.pytest.ini_options]
pythonpath = ["src"]
testpaths = ["tests"]
python_files = "test_*.py"
python_functions = "test_*"
python_classes = "Test*"