-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
63 lines (58 loc) · 1.38 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[tool]
[tool.poetry]
name = "cookiecutter-cloudfunctions"
version = "0.0.0"
description = "Cookiecutter to create a Google Function. Powered by Poetry, GitHub actions, and Google Cloud Platform."
authors = ["Marco Gancitano <[email protected]>"]
license = "MIT License"
readme = "README.md"
homepage = "https://github.com/askarthur/cookiecutter-cloudfunctions"
repository = "https://github.com/askarthur/cookiecutter-cloudfunctions"
keywords = ["cookiecutter"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.7",
"Topic :: Software Development :: Libraries :: Python Modules",
]
include = ["LICENSE"]
[tool.poetry.dependencies]
python = "^3.8"
[tool.poetry.dev-dependencies]
cookiecutter = "^1.7.0"
pytest = "^5.4.0"
pytest-cov = "^2.10.0"
pytest-cookies = "^0.5.0"
invoke = "^1.4.0"
pydocstyle = "5.0.0"
flake8 = "^4.0.0"
flake8-docstrings = "1.6.0"
flake8-import-order = "0.18.1"
flake8-colors = "0.1.8"
mypy = "0.960"
black = "22.3.0"
[tool.black]
line-length=100
include = '''
(
/(
hooks
| tests
)/
)
'''
exclude = '''
(
/(
{{cookiecutter.project_slug}}
| .git
| .venv
| __pycache__
)/
)
'''
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"