-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (30 loc) · 821 Bytes
/
pyproject.toml
File metadata and controls
34 lines (30 loc) · 821 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
[tool.poetry]
name = "eagr"
version = "0.2.2"
description = "A collection of utilities for making GRPC easier to use in python."
authors = ["Louis Ades <louis.ades@kensho.com>"]
[tool.poetry.dependencies]
python = "^3.6"
backoff = "^1.6.0"
Flask = ">=0.12.2"
grpcio-opentracing = "^1.1"
funcy = "^1.7.2"
grpcio-reflection = "^1.25"
grpcio-tools = "^1.25"
grpcio = "^1.25"
prometheus_client = "^0.7.1"
protobuf = ">=3.6.0, <3.14.0"
pytz = "^2019.3"
opentracing_instrumentation = "^3.2"
opentracing = "^2.2"
[tool.poetry.dev-dependencies]
pytest = "^6.1"
black = "19.10b0"
flake8 = "^3.7"
isort = "^4.3"
[tool.black]
line-length = 100
exclude = '(.*_pb2.*|/(\.eggs|\.git|\.hg|\.mypy_cache|\.nox|\.tox|\.venv|_build|buck-out|build|dist)/)'
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"