forked from nficano/python-lambda
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (43 loc) · 1.11 KB
/
pyproject.toml
File metadata and controls
47 lines (43 loc) · 1.11 KB
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
[tool.poetry]
name = "python-lambda"
version = "11.8.4"
description = "The bare minimum for a Python app running on Amazon Lambda."
authors = ["Nick Ficano <nficano@gmail.com>"]
license = "ISCL"
readme = "README.md"
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: ISC License (ISCL)",
"Natural Language :: English",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
]
packages = [{ include = "aws_lambda" }]
[tool.poetry.scripts]
lambda = "aws_lambda.__main__:main"
[tool.poetry.dependencies]
python = "^3.6"
boto3 = "^1.4.4"
click = "^7.1.2"
docutils = "*"
jmespath = "^0.10.0"
pyaml = "^20.4.0"
python-dateutil = "^2.8.1"
PyYAML = "^5.3.1"
[tool.poetry.dev-dependencies]
twine = "*"
flake8 = "*"
black = "*"
bumpversion = "*"
pipenv-to-requirements = "*"
wheel = "*"
pytest = "*"
codecov = "*"
coveralls = "*"
pytest-cov = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"