-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
45 lines (39 loc) · 1.3 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
[tool.poetry]
name = "chocs"
version = "1.6.1"
description = "Lightweight and powerful WSGI/AWS lambda framework for rapid building rest applications."
authors = [
"Dawid Kraczkowski <[email protected]>"
]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/kodemore/chocs"
repository = "https://github.com/kodemore/chocs"
documentation = "https://github.com/kodemore/chocs"
keywords = ["http", "serverless", "aws", "framework", "router", "request", "response", "cookies", "routing", "rest", "wsgi"]
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 :: Internet :: WWW/HTTP :: WSGI :: Application",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware",
]
# Requirements
[tool.poetry.dependencies]
python = "^3.8"
pyyaml = ">=5.3.1,<7.0.0"
[tool.poetry.dev-dependencies]
pytest = "^7.1.2"
pytest-cov = "^3.0"
pytest-mock = "^3.8"
black = "22.6.0"
isort = "^5.6.4"
mypy = "^0.971"
bjoern = "^3.2.1"
pylint = "^2.15.6"
types-PyYAML = "^6.0.9"