forked from MousaZeidBaker/aws-lambda-typing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
48 lines (43 loc) · 1.11 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
[tool.poetry]
name = "aws-lambda-typing"
version = "2.18.0"
description = "A package that provides type hints for AWS Lambda event, context and response objects"
authors = ["Mousa Zeid Baker"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/MousaZeidBaker/aws-lambda-typing"
repository = "https://github.com/MousaZeidBaker/aws-lambda-typing"
keywords=[
'typing',
'type hints',
'aws',
'lambda',
'serverless',
'development'
]
classifiers=[
'Development Status :: 5 - Production/Stable',
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
include = [
"LICENSE",
]
packages = [
{ include = "aws_lambda_typing", from = "src" },
]
[tool.poetry.dependencies]
python = "^3.6"
typing-extensions = { version = "^4.1.1", python = "<3.8" }
[tool.poetry.dev-dependencies]
mypy = "^0.910"
pre-commit = { version = "^2.17.0", python = "^3.6.1" }
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 80
[tool.isort]
line_length=80
profile = "black"