-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
44 lines (40 loc) · 1.19 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
[tool.poetry]
name = "chocs_middleware.xray"
version = "1.0.0"
description = "Middleware to integrate aws x-ray with chocs."
authors = [
"Dawid Kraczkowski <[email protected]>",
"Aidan Currah <[email protected]>"
]
license = "MIT"
readme = "README.md"
packages = [
{ include = "chocs_middleware" }
]
homepage = "https://github.com/kodemore/chocs-aws-xray"
repository = "https://github.com/kodemore/chocs-aws-xray"
documentation = "https://github.com/kodemore/chocs-aws-xray"
keywords = ["aws", "x-ray", "chocs", "http", "middleware"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
]
# Requirements
[tool.poetry.dependencies]
python = "^3.8"
chocs = "^1.0.0"
aws-xray-sdk = "^2.9.0"
[tool.poetry.dev-dependencies]
pytest = "^4.1.0"
pytest-cov = "^2.5"
black = "21.10b0"
isort = "^5.6.4"
mypy = "^0.812"
pylint = "^2.7.2"