-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
37 lines (31 loc) · 1.02 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
[tool.poetry]
name = "cloud-init-gen"
version = "1.2.0"
description = "Simplified generation of cloud-init user-data content"
authors = [ "Sam McKelvie <[email protected]>" ]
license = "MIT"
keywords = [ "cloud-init", "user-data", "userdata", "ec2", "boto3", "aws", "pulumi" ]
readme = "README.md"
homepage = "https://github.com/sammck/cloud-init-gen"
repository = "https://github.com/sammck/cloud-init-gen.git"
[tool.poetry.dependencies]
python = "^3.8"
PyYAML = "^6.0"
[tool.poetry.dev-dependencies]
mypy = "^0.931"
dunamai = "^1.9.0"
python-semantic-release = "^7.25.2"
types-PyYAML = "^6.0.5"
boto3 = "^1.21.31"
boto3-stubs = {extras = ["essential"], version = "^1.21.34"}
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
[tool.semantic_release]
version_variable = 'cloud_init_gen/version.py:__version__'
version_toml = 'pyproject.toml:tool.poetry.version'
branch = 'main'
upload_to_pypi = false
upload_to_release = true
build_command = "pip install poetry && poetry build"