-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpyproject.toml
40 lines (36 loc) · 981 Bytes
/
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
[tool.poetry]
name = "aws-okta-processor"
version = "1.10.0"
description = "Resource for fetching AWS Role credentials from Okta"
authors = ["Cloud Platform Solutions <[email protected]>"]
readme = "README.rst"
repository = "https://github.com/godaddy/aws-okta-processor"
[tool.poetry.scripts]
aws-okta-processor = "aws_okta_processor.cli:main"
[tool.poetry.dependencies]
python = "^3.9"
docopt = ">=0.6.2"
requests = ">=2.21.0"
boto3 = ">=1.9.134"
beautifulsoup4 = ">=4.11.1"
contextlib2 = ">=0.5.5"
six = ">=1.12.0"
defusedxml = ">=0.7.1"
tomlkit = "^0.13.2"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.3"
mock = "^5.1.0"
pytest-cov = "^6.0.0"
readme-renderer = "^44.0"
docutils = "^0.21.2"
flake8 = "^7.1.1"
responses = "^0.25.3"
atomicwrites = "^1.4.1"
importlib-metadata = "^8.5.0"
typing-extensions = "^4.12.2"
black = "^24.10.0"
mypy = "^1.13.0"
pylint = "^3.3.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"