forked from kodemore/kink
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
40 lines (32 loc) · 858 Bytes
/
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
[tool.poetry]
name = "kink"
version = "0.8.0"
description = "Dependency injection for python."
authors = [
"Dawid Kraczkowski <[email protected]>"
]
license = "MIT"
readme = "README.md"
keywords = ["kink", "dependency injection"]
homepage = "https://github.com/kodemore/kink"
repository = "https://github.com/kodemore/kink"
documentation = "https://github.com/kodemore/kink"
classifiers = [
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules"
]
include = ["kink/py.typed"]
# Requirements
[tool.poetry.dependencies]
python = "^3.8"
typing_extensions = "^4.9.0"
[tool.poetry.dev-dependencies]
isort = "^5.13.2"
pytest = "^8.0.0"
pytest-asyncio = "^0.23.5"
pytest-cov = "^4.1.0"
requests = "^2.31.0"
starlette = "^0.37.1"
httpx = "^0.26.0"
black = "^24.2.0"
mypy = "^1.8.0"