-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
63 lines (47 loc) · 1.16 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
55
56
57
58
59
60
61
62
63
[tool.poetry]
name = "flm-core"
version = "0.3.0alpha000016" # ALSO BUMP IN flm/flm/__init__.py
description = "Flexible Latex-like Markup"
authors = ["Philippe Faist"]
license = "MIT"
readme = "README.md"
include = ["flm/main/templates/**/*"]
packages = [
{ include = "flm" },
]
[tool.poetry.scripts]
flm = 'flm.__main__:run_main'
[tool.poetry.dependencies]
python = "^3.8"
pylatexenc = { version = "^3.0a29", allow-prereleases = true }
[tool.poetry.group.maincmdl]
optional = false
[tool.poetry.group.maincmdl.dependencies]
watchfiles = "^0.22.0"
python-frontmatter = "^1.0.0"
PyYAML = ">=5.0"
colorlog = "^6.7.0"
pillow = "^10.4.0"
cairosvg = "^2.7.1"
pypdf = "^4.3.1"
[tool.poetry.dev-dependencies]
pytest = "^7.1.2"
ipython = "^8.3.0"
toml = "^0.10.2"
[tool.poetry.group.buildjslib]
optional = true
[tool.poetry.group.buildjslib.dependencies]
Transcrypt = ">=3.9.0"
PyYAML = ">=5.0"
[tool.poetry.group.builddoc]
optional = true
[tool.poetry.group.builddoc.dependencies]
Sphinx = ">=5.0.0"
sphinx-issues = ">=3.0.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
testpaths = [
"test",
]