-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (51 loc) · 1.68 KB
/
Copy pathpyproject.toml
File metadata and controls
59 lines (51 loc) · 1.68 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
57
58
59
[build-system]
requires = ["setuptools>=64", "docutils>=0.12"]
build-backend = "setuptools.build_meta"
[project]
name = "formiko"
dynamic = ["version", "readme"]
description = "Formiko is reStructuredText and MarkDown editor and live previewer."
authors = [{name = "Ondrej Tuma", email = "mcbig@zeropage.cz"}]
license = "BSD-3-Clause"
keywords = ["doc", "html", "rst", "docutils", "md", "markdown", "editor"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: X11 Applications :: GTK",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Documentation",
"Topic :: Software Development :: Documentation",
"Topic :: Text Editors :: Documentation",
"Topic :: Text Editors :: Text Processing",
"Topic :: Text Processing",
"Topic :: Text Processing :: Markup",
"Topic :: Text Processing :: Markup :: HTML",
"Topic :: Utilities",
]
dependencies = ["docutils>=0.12", "jsonpath-ng"]
[project.optional-dependencies]
extra = [
"pynvim",
"m2r2",
"Pygments",
"docutils-tinyhtmlwriter",
"docutils-htmlwriter",
"docutils-html5-writer",
]
[project.urls]
Homepage = "https://formiko.zeropage.cz"
[project.gui-scripts]
formiko = "formiko.__main__:main"
formiko-vim = "formiko.__main__:main_vim"
[tool.setuptools.dynamic]
version = {attr = "formiko.__version__"}
readme = {file = "README.rst"}
[tool.setuptools.packages.find]
include = ["formiko*"]
[tool.setuptools.package-data]
"formiko.data" = ["*.js", "*.css", "AUTHORS"]
[tool.pytest.ini_options]
testpaths = ["tests"]