-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpyproject.toml
76 lines (72 loc) · 2.06 KB
/
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
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
[tool.poetry]
name = "zk"
version = "0.9.4"
description = "zipkin"
authors = ["Gandi <feedback@gandi.net>"]
license = "Apache"
readme = "README.rst"
keywords = ["zipkin", "metrics", "trace"]
homepage = "/~https://github.com/Gandi/python-zipkin/"
packages = [{include = "zipkin"}]
[tool.poetry.dependencies]
python = "^3.7"
thriftpy2 = "^0.5.2"
setuptools = [
{ python = "<3.9", version = "^64.0.0" },
{ python = ">=3.9", version = "^75.0.0" },
]
django = [
{ python = "<3.9", version = "^3.2.25", optional = true },
{ python = "~3.9", version = "^4.0.0", optional = true },
{ python = ">=3.10", version = "^5.1.1", optional = true },
]
flask = [
{ python = "<3.9", version = "^2.0.0", optional = true },
{ python = ">=3.9", version = "^2.0.0", optional = true },
]
pyramid = [
{ python = "<3.9", version = "^1.7.0", optional = true },
{ python = ">=3.9", version = "^2.0.2", optional = true },
]
celery = [
{ python = "<3.9", version = "^5.2.0", optional = true },
{ python = ">=3.9", version = "^5.4.0", optional = true },
]
requests = [
{ python = "<3.9", version = "^2.31.0", optional = true },
{ python = ">=3.9", version = "^2.32.0", optional = true },
]
[tool.poetry.extras]
django = ["django"]
pyramid = ["pyramid"]
celery = ["celery"]
requests = ["requests"]
psycopg2 = ["psycopg2-binary"]
flask = ["flask", "blinker"]
[tool.poetry.group.dev.dependencies]
python = "^3.7"
pytest = "^7.0.0"
flask = [
{ python = "<3.9", version = "^2.0.0" },
{ python = ">=3.9", version = "^2.0.0" },
]
pyramid = [
{ python = "<3.9", version = "^1.7.0" },
{ python = ">=3.9", version = "^2.0.2" },
]
celery = [
{ python = "<3.9", version = "^5.2.0" },
{ python = ">=3.9", version = "^5.4.0" },
]
requests = [
{ python = "<3.9", version = "^2.31.0" },
{ python = ">=3.9", version = "^2.32.0" },
]
django = [
{ python = "<3.9", version = "^3.2.25" },
{ python = "~3.9", version = "^4.0.0" },
{ python = ">=3.10", version = "^5.1.1" },
]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"