-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
49 lines (43 loc) · 1.07 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
[build-system]
requires = ["setuptools>=70.0"]
build-backend = "setuptools.build_meta"
[project]
name="cookiecutter-comfy-extension"
authors = [
{name = "Max Klein", email = "[email protected]"}
]
version="0.0.1"
description="Cookiecutter template for a Python package"
license={file = "LICENSE"}
keywords=["cookiecutter", "template", "package"]
requires-python=">=3.8"
classifiers = [
]
dependencies = [
"cookiecutter~=2.6.0"
]
[project.optional-dependencies]
dev = [
"bump-my-version",
"coverage", # testing
"mypy", # linting
"pytest", # testing
"ruff", # linting
]
[project.urls]
bugs = "https://github.com/comfy-org/cookiecutter-comfy-extension/issues"
homepage = "https://github.com/comfy-org/cookiecutter-comfy-extension"
[tool.pytest.ini_options]
minversion = "6.0"
# addopts = "-ra -q"
testpaths = [
"tests",
]
[tool.ruff]
# extend-exclude = ["static", "ci/templates"]
line-length = 140
src = ["src", "tests"]
target-version = "py39"
exclude = ["*cookiecutter.project_slug*"]
[tool.ruff.lint.flake8-quotes]
inline-quotes = "double"