-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
42 lines (37 loc) · 923 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
[project]
name = "pireal"
version = "4.0"
description = "Relational Algebra Interpreter"
readme = "README.md"
requires-python = ">=3.10"
license = { file = "COPYING" }
authors = [{ name = "Gabriel Acosta", email = "[email protected]" }]
maintainers = [
{ name = "Gabriel Acosta", email = "[email protected]" },
]
classifiers = [
"Environment :: X11 Applications",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Education",
"Topic :: Utilities",
]
dependencies = [
"packaging>=24.1",
"pyqt6>=6.7.1",
]
[project.scripts]
pireal = "pireal.main:run"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.ruff]
line-length = 100
[tool.ruff.lint]
exclude = ["windows/*", "tests/*"]
[tool.uv]
dev-dependencies = [
"pytest-cov>=5.0.0",
"pytest>=8.3.3",
"ruff>=0.6.7",
]