-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
44 lines (37 loc) · 1.46 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
[build-system]
requires = [ "poetry-core",]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "cognito-clean"
version = "0.1.1"
description = "Cleans unconfirmed users from a Cognito User Pool"
authors = [ "XargsUK <[email protected]>",]
maintainers = [ "XargsUK <[email protected]>",]
license = "MIT"
readme = "README.md"
repository = "https://github.com/XargsUK/cognito-clean"
keywords = [ "aws", "lambda", "cognito", "clean", "unconfirmed",]
classifiers = [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Topic :: Software Development :: Libraries", "Topic :: Utilities",]
[[tool.poetry.include]]
path = "tests"
format = "sdist"
[tool.poetry.dependencies]
python = "^3.8.1"
boto3 = "^1.30"
pytz = "^2024.1"
[tool.poetry.scripts]
cognito_clean = "cognito_clean.cognito_cleaner:main_handler"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q"
testpaths = [ "tests",]
[tool.poetry.group.github-actions]
optional = true
[tool.poetry.group.github-actions.dependencies]
pytest-github-actions-annotate-failures = "^0.1.7"
[tool.poetry.group.dev.dependencies]
pytest = "^8.0.2"
pytest-cov = "^4.1.0"
flake8 = "^7.0.0"
coverage = "^7.4.3"
toml = "^0.10.2"