-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
58 lines (50 loc) · 1.14 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
[project]
name = "realflare"
description = "Physically-Based Lens Flare Tool"
version = "0.6.4"
authors = [
{name = "Beat Reichenbach"}
]
dependencies = [
"qt-extensions",
"PySide2",
"PyYAML",
"numpy<2",
"opencv-python-headless",
"pyopencl",
"opencolorio",
"sentry-sdk",
"python-slugify[unidecode]"
]
requires-python = ">=3.9,<3.11"
license = {text = "MIT"}
readme = "README.md"
[project.optional-dependencies]
dev = [
"black",
"mkdocs-material",
"python-semantic-release",
"py-markdown-table"
]
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["realflare*"]
[tool.setuptools.package-data]
realflare = ["**/*.cl", "**/*.ico", "**/*.png", "**/*.json", "**/*.yml"]
[tool.pytest.ini_options]
log_cli = true
log_cli_level = "DEBUG"
[tool.semantic_release]
version_toml = [
"pyproject.toml:project.version"
]
version_variables = [
"realflare/__init__.py:__version__"
]
#build_command = "python -m build --sdist --wheel"
[tool.semantic_release.remote]
ignore_token_for_push = true
[tool.black]
skip-string-normalization = true