forked from kodemore/kink
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
39 lines (31 loc) · 870 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
[tool.poetry]
name = "kink"
version = "0.6.2"
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.7"
typing_extensions = "^3.7.4"
[tool.poetry.dev-dependencies]
black = { version = "^19.3b0", python = "^3.6" }
isort = "^5.7.0"
mypy = "^0.730.0"
pytest = "^5.4.3"
pytest-asyncio = "^0.14.0"
pytest-cov = "^2.5"
requests = "^2.24.0"
starlette = "^0.13.4"