-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml.bak
47 lines (40 loc) · 1.13 KB
/
pyproject.toml.bak
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
[project]
name = "pireal"
dynamic = ["version"]
description = "Relational Algebra Interpreter"
readme = "README.md"
requires-python = ">=3.10"
license = {file = "COPYING"}
authors = [
{name = "Gabriel Acosta", email = "acostadariogabriel@gmail.com"}
]
maintainers = [
{name = "Gabriel Acosta", email = "acostadariogabriel@gmail.com"}
]
classifiers = [
"Environment :: X11 Applications",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Education",
"Topic :: Utilities",
]
dependencies = [
"PyQt6"
]
[project.optional-dependencies]
dev = ["pytest", "pytest-cov", "ruff"]
extras = ["rich"]
[project.scripts]
pireal = "pireal.main:run"
[tool.setuptools.packages.find]
where = ["src"]
[build-system]
requires = ["setuptools", "setuptools_scm[toml]>=6.2", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
[tool.ruff]
line-length = 100
[tool.ruff.lint]
select = [ "A", "B", "C90", "D", "E", "EM", "F", "I", "N", "PTH", "RUF", "W",]
ignore = ["D103", "D102", "D101", "D100", "D107", "D104", "D105", "EM101", "N802", "N815", "EM102"]
exclude = ["windows/*", "tests/*"]