-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
39 lines (30 loc) · 956 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
[build-system]
requires = ['setuptools>=74']
build-backend = 'setuptools.build_meta'
[project]
name = 'cloudpuff'
description = 'Powerful tools for working with AWS CloudFormation.'
authors = [
{name = 'Beanbag, Inc.', email = 'questions@beanbaginc.com' },
]
license = { text = 'MIT' }
requires-python = '>=3.8'
dynamic = ['version']
dependencies = [
'boto3',
'colorama~=0.4.6',
'PyYAML~=6.0.2',
'typing_extensions>=4.3.0',
]
[project.scripts]
cloudpuff-create-ami = 'cloudpuff.commands.create_ami:main'
cloudpuff-compile-template = 'cloudpuff.commands.compile_template:main'
cloudpuff-launch-stack = 'cloudpuff.commands.launch_stack:main'
cloudpuff-list-stacks = 'cloudpuff.commands.list_stacks:main'
cloudpuff-make-depends = 'cloudpuff.commands.make_depends:main'
[tool.setuptools.packages.find]
where = ['.']
include = ['cloudpuff*']
namespaces = false
[tool.setuptools.dynamic]
version = { attr = 'cloudpuff.__version__' }