-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (32 loc) · 913 Bytes
/
pyproject.toml
File metadata and controls
38 lines (32 loc) · 913 Bytes
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
[tool.poetry]
name = "gatech-aws-credentials"
version = "5"
description = "Retrieve credentials for Georgia Tech AWS accounts using CAS"
license = "MIT"
authors = ["Kristaps Berzinch <kristapsberzinch@gmail.com>"]
repository = "https://github.com/RoboJackets/gatech-aws-credentials"
[tool.poetry.dependencies]
python = "^3.10"
requests = "2.32.5"
boto3 = "1.42.21"
beautifulsoup4 = "4.14.3"
keyring = "25.4.1"
[tool.poetry.dev-dependencies]
black = "24.10.0"
boto3-stubs = "1.42.14"
botostubs = "0.15.1.23.10"
flake8 = "7.1.2"
flake8-bugbear = "24.12.12"
flake8-import-order = "0.18.2"
mypy = "1.11.2"
pylint = "3.2.7"
[tool.poetry.scripts]
gatech-aws-credentials = 'gatech_aws_credentials:main'
[tool.poetry.group.dev.dependencies]
types-requests = "^2.31.0.20240106"
[tool.black]
line-length = 100
target-version = ['py38']
[build-system]
requires = ["poetry==1.8.5"]
build-backend = "poetry.masonry.api"