-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
54 lines (48 loc) · 1.28 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
49
50
51
52
53
54
[tool.poetry]
name = "dynaconf-aws-loader"
version = "0.5.0"
description = "A custom loader for Dynaconf that uses AWS Systems Manager Parameter Store as a source of truth."
homepage = "https://github.com/fictivekin/dynaconf-aws-loader"
repository = "https://github.com/fictivekin/dynaconf-aws-loader"
authors = [
"Joël Perras <[email protected]>",
]
readme = "README.rst"
packages = [{include = "dynaconf_aws_loader"}]
license = "MIT"
keywords = ["dynaconf", "AWS", "SSM"]
classifiers = [
"Environment :: Console",
"Operating System :: OS Independent",
"Topic :: Software Development :: Documentation",
"Topic :: Software Development :: Libraries :: Python Modules",
]
include = [
"LICENSE",
"CHANGELOG.md"
]
[tool.poetry.dependencies]
python = "^3.8"
boto3 = "^1.26"
botocore = "^1.29"
dynaconf = "^3.1"
[tool.poetry.group.dev.dependencies]
pytest = "^7.3.1"
lovely-pytest-docker = "^0.3.1"
boto3-stubs = {extras = ["ssm"], version = "^1.26"}
localstack-client = "^2.1"
pytest-env = "^0.8.1"
[tool.poetry.group.test.dependencies]
pytest-mock = "^3.11.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
minversion = "7.0"
addopts = "-ra"
testpaths = [
"tests",
]
env = [
"AWS_DEFAULT_REGION=us-east-1",
]