@@ -6,9 +6,6 @@ authors = [{ name = "David Runemalm", email = "david.runemalm@gmail.com" }]
66license = { text = " MIT" }
77readme = " README.md"
88requires-python = " >=3.7"
9- repository = " https://github.com/runemalm/py-dependency-injection"
10- homepage = " https://py-dependency-injection.readthedocs.io/en/latest/"
11- documentation = " https://py-dependency-injection.readthedocs.io/en/latest/"
129keywords = [" dependency injection" , " di" , " ioc" , " inversion of control" , " python" ]
1310classifiers = [
1411 " Development Status :: 4 - Beta" ,
@@ -24,11 +21,15 @@ classifiers = [
2421 " Programming Language :: Python :: 3.13" ,
2522 " Topic :: Software Development :: Libraries :: Python Modules"
2623]
27-
2824dependencies = [
2925
3026]
3127
28+ [project .urls ]
29+ Repository = " https://github.com/runemalm/py-dependency-injection"
30+ Homepage = " https://py-dependency-injection.readthedocs.io/en/latest/"
31+ Documentation = " https://py-dependency-injection.readthedocs.io/en/latest/"
32+
3233[tool .poetry .group .dev ]
3334optional = true
3435
@@ -41,10 +42,10 @@ pytest = "*"
4142setuptools = " *"
4243wheel = " *"
4344
44- [tool .poetry . packages ]
45- include = " dependency_injection"
46- from = " src"
45+ [tool .setuptools ]
46+ packages = [ " dependency_injection" ]
47+ package-dir = { "" = " src" }
4748
4849[build-system ]
49- requires = [" poetry-core>=2.0.0,<3.0.0 " ]
50- build-backend = " poetry.core.masonry.api "
50+ requires = [" setuptools " , " wheel " ]
51+ build-backend = " setuptools.build_meta "
0 commit comments