-
Notifications
You must be signed in to change notification settings - Fork 199
/
Copy pathpyproject.toml
50 lines (43 loc) · 1.46 KB
/
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
43
44
45
46
47
48
49
50
[build-system]
requires = ["setuptools>=62.4"]
build-backend = "setuptools.build_meta"
[project]
name = "ReText"
version = "8.1.0"
description = "Simple editor for Markdown and reStructuredText"
readme = "README.md"
authors = [{ name = "Dmitry Shachnev", email = "[email protected]" }]
license = { text = "GPL-2.0-or-later" }
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: X11 Applications :: Qt",
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Text Editors",
"Topic :: Text Processing :: Markup",
]
requires-python = ">=3.9"
dependencies = [
"Markups[markdown,restructuredtext]>=4.0",
"Pygments",
"PyQt6",
]
[project.gui-scripts]
retext = "ReText.__main__:main"
[project.optional-dependencies]
spellcheck = ["pyenchant"]
encoding-detection = ["chardet"]
webengine = ["PyQt6-WebEngine"]
[project.urls]
Homepage = "https://github.com/retext-project/retext"
Wiki = "https://github.com/retext-project/retext/wiki"
"Issue Tracker" = "https://github.com/retext-project/retext/issues"
[tool.setuptools]
packages = ["ReText"]
include-package-data = false
[tool.setuptools.data-files]
"share/applications" = ["data/me.mitya57.ReText.desktop"]
"share/icons/hicolor/scalable/apps" = ["ReText/icons/retext.svg"]
"share/metainfo" = ["data/me.mitya57.ReText.metainfo.xml"]
[tool.setuptools.package-data]
ReText = ["icons/*.png", "icons/*.svg", "locale/*.qm"]