-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
47 lines (40 loc) · 997 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
41
42
43
44
45
46
47
# pyproject.toml
[build-system]
requires = ["setuptools>=42", "wheel", "mypy; extra == 'type_check'"]
build-backend = "setuptools.build_meta"
[project]
name = "cc-builder"
version = "1.0.0"
description = "An interactive command line tool for generating cloud-config files for cloud-init"
authors = [
{ name="a-dubs", email="alecwarren19@gmail.com" }
]
readme = "README.md"
license = { file="LICENSE" }
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"click>=8",
"PyYAML>=6",
"rich_click"
]
[project.scripts]
cc-builder = "cc_builder.cli:main"
ccb = "cc_builder.cli:main"
[tool.black]
line-length = 120
target-version = ['py36']
[tool.isort]
profile = "black"
line_length = 120
[tool.mypy]
follow_imports = "silent"
warn_unused_ignores = "true"
warn_redundant_casts = "true"
exclude=[]
[tool.setuptools.packages.find]
exclude = ["snap"]