-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (41 loc) · 1.28 KB
/
pyproject.toml
File metadata and controls
50 lines (41 loc) · 1.28 KB
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "nottodbox"
version = "0.1.1"
authors = [{name="MuKonqi (Muhammed S.)"}]
description = "Organize notes, to-dos and diaries"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Intended Audience :: End Users/Desktop",
"Topic :: Text Editors",
"Topic :: Text Processing",
"Topic :: Utilities",
"Programming Language :: Python",
"Operating System :: OS Independent",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)"
]
dependencies = ["PySide6-Essentials"]
[project.urls]
Repository = "https://github.com/mukonqi/nottodbox"
Issues = "https://github.com/mukonqi/nottodbox/issues"
[project.scripts]
nottodbox = "nottodbox.scripts.application:main"
[tool.setuptools]
packages = ["nottodbox", "nottodbox.scripts", "nottodbox.scripts.resources", "nottodbox.scripts.widgets"]
[tool.setuptools.package-data]
nottodbox = ["LICENSE.txt", "color-schemes/*"]
[tool.ruff]
line-length = 120
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false
docstring-code-format = true
[tool.ruff.lint]
select = ["A", "B", "E", "F", "I", "SIM", "UP", "W"]
ignore = ["E501"]
[tool.ruff.lint.isort]
split-on-trailing-comma = false