-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
35 lines (31 loc) · 963 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
[tool.poetry]
name = "awsudo-py"
version = "0.1.2"
description = "A sudo-like tool to configure AWS environment variables and call programs"
authors = ["Christopher Dignam <chris@dignam.xyz>"]
license = "GPL-3.0-or-later"
readme = "README.md"
repository = "https://github.com/chdsbd/awsudo-py"
keywords = ["aws","awscli"]
classifiers = [
"Intended Audience :: Developers",
"Environment :: Console",
"Programming Language :: Python :: 3.6",
"Operating System :: OS Independent",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Topic :: System :: Systems Administration",
]
[tool.poetry.dependencies]
python = "^3.6.5"
botocore = "^1.12"
boto3 = "^1.9"
[tool.poetry.dev-dependencies]
pytest = "^3.0"
mypy = "^0.650.0"
black = {version = "^18.3-alpha.0"}
ipdb = "^0.11.0"
[tool.poetry.scripts]
awsudo = 'awsudo_py.awsudo:main'
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"