forked from 4dn-dcic/python-lambda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
44 lines (41 loc) · 1.26 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 = "python-lambda-4dn"
version = "2.0.0b3"
description = "A forked version of python-lambda for 4DN-DCIC use in packaging and deploying lambda functions."
authors = ["4DN-DCIC Team <support@4dnucleome.org>"]
license = "MIT"
keywords = ["python-lambda"]
readme = "README.rst"
homepage = "https://github.com/4dn-dcic/python-lambda"
repository = "https://github.com/4dn-dcic/python-lambda"
packages = [
{ include="aws_lambda", from="." }
]
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3.6',
]
include = [
# The history file is unreferenced and empty. -kmp 12-Mar-2020
# "HISTORY.rst",
"LICENSE",
]
[tool.poetry.dependencies]
python = ">=3.6,<3.7"
"botocore" = ">=1.13.7,<2"
"boto3" = ">=1.10.7,<2"
"docutils" = ">=0.14,<0.16"
"six" = ">=1.12.0,<2"
[tool.poetry.dev-dependencies]
# This (coveralls) is installed by .travis.yml. Should we depend on it here? -kmp 6-Mar-2020
# "coveralls" = ">=1.11.1,<2"
"pytest" = ">=3.0.5,<4"
"pytest-cov" = ">=2.3.1,<3"
# pygments is only needed by PyCharm to render the README
"pygments" = ">=2"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"