-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (42 loc) · 851 Bytes
/
Copy pathpyproject.toml
File metadata and controls
43 lines (42 loc) · 851 Bytes
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
[project]
name = "koni_script"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"ansimarkup>=2.2.0",
"pygls>=2.0.1",
"pyinstaller>=6.19.0",
"pytest>=9.0.2",
"typer>=0.24.1",
]
[project.optional-dependencies]
nuitka = [
"nuitka[onefile]>=4.0.3"
]
dev = [
"pyperclip>=1.11.0",
"questionary>=2.1.1",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/koni_compiler"]
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q"
testpaths = [
"tests",
]
pythonpath = ["src"]
[project.scripts]
koni = "koni_compiler.koni:app"
test = "koni_compiler.run_tests:main"
[tool.ruff.format]
quote-style = "single"
[tool.uv.workspace]
members = [
"src/koni_compiler",
]