-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (48 loc) · 1.14 KB
/
Copy pathpyproject.toml
File metadata and controls
56 lines (48 loc) · 1.14 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
51
52
53
54
55
56
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "negar-gui"
dynamic = ["version", "readme"]
description = "Graphical User Interface for Negar -- Persian Text Editor"
requires-python = ">=3.8"
license = "GPL-3.0-or-later"
license-files = ["LICENSE"]
authors = [
{ name = "Javad Razavian", email = "javadr@gmail.com" }
]
keywords = ["Spellcheck", "Persian", "Text-Editor"]
dependencies = [
"python-negar>=1.4.3",
"PyQt6",
"pyperclip",
"pyuca",
"redlines",
"regex",
"requests",
"qrcode",
"docopt",
"Image",
"pyqtdarktheme",
"toml"
]
[project.urls]
Homepage = "http://github.com/javadr/negar-gui"
[project.scripts]
negar-gui-od = "negar_gui.gui:main"
negar-gui = "negar_gui.main:main"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]
include = ["negar_gui*"]
[tool.setuptools.dynamic]
version = { attr = "negar_gui.constants.__version__" }
readme = { file = ["README.md"], content-type = "text/markdown" }
[tool.ruff]
line-length = 120
target-version = "py38"
[tool.ruff.lint]
ignore = [
"E722", # Do not use bare `except`,
]