-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
49 lines (39 loc) · 1018 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
48
49
[build-system]
requires = ["setuptools", "setuptools_scm", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "render-engine-theme-kjaymiller"
dynamic = ["version"]
description = "Internationalization and Localization for Render Engine"
readme = "README.md"
dependencies = [
'render-engine==2023.10.1'
]
[project.optional-dependencies]
dev = [
"black",
"pytest",
"ruff",
]
[tool.setuptools_scm]
local_scheme = "no-local-version"
[tool.setuptools]
package-dir = {"" = "src"}
[project.urls]
homepage = "https://example.com"
repository = "https://github.com/kjaymiller/render-engine-theme-kjaymiller"
documentation = "https://example.com/docs"
[tool.pytest.ini_options]
pythonpath = ["src"]
[tool.semantic_release]
version_toml = "pyproject.toml:project.version"
branch = "main"
[tool.ruff]
select = ["E", "F", "I", "UP"]
target-version = "py311"
line-length = 120
src = ["src"]
ignore-init-module-imports = true
[tool.black]
target-version = ["py311"]
line-length = 120