forked from andreoliwa/logseq-doctor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
54 lines (47 loc) · 1.6 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
51
52
53
54
[tool.black]
line-length = 120
target-version = ['py37']
skip-string-normalization = true
[tool.poetry]
name = "logseq-doctor"
version = "0.1.1"
description = "Logseq Doctor: heal your flat old Markdown files before importing them"
authors = ["W. Augusto Andreoli <[email protected]>"]
license = "MIT"
readme = "README.rst"
repository = "https://github.com/andreoliwa/logseq-doctor"
keywords = [
"python", "markdown", "python3", "knowledge-graph", "knowledge-base", "markdown-format", "markdown-formatter",
"logseq", "markdown-formatting", "logseq-plugin"
]
# Complete classifier list: http://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Operating System :: MacOS",
"Operating System :: Unix",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Documentation",
"Topic :: Office/Business",
"Topic :: Scientific/Engineering",
"Topic :: Text Processing :: Markup :: Markdown",
]
[tool.poetry.urls]
"Documentation" = "https://logseq-doctor.readthedocs.io/"
"Changelog" = "https://logseq-doctor.readthedocs.io/en/latest/changelog.html"
"Issue Tracker" = "https://github.com/andreoliwa/logseq-doctor/issues"
[tool.poetry.scripts]
lsd = "logseq_doctor.cli:app"
[tool.poetry.dependencies]
python = "^3.7"
click = "*"
mistletoe = "*"
typer = {extras = ["all"], version = "*"}
[tool.poetry.group.dev.dependencies]
pytest = "*"
pytest-cov = "*"
pytest-datadir = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"