-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathpyproject.toml
48 lines (35 loc) · 1.14 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
[tool.poetry]
name = "pylatexenc"
version = "3.0alpha000031" # ALSO BUMP IN pylatexenc/version.py
description = "Simple LaTeX parser providing latex-to-unicode and unicode-to-latex conversion"
authors = ["Philippe Faist <[email protected]>"]
license = "MIT"
readme = "README.rst"
[tool.poetry.scripts]
latexwalker = 'pylatexenc.latexwalker.__main__:main'
latex2text = 'pylatexenc.latex2text.__main__:main'
latexencode = 'pylatexenc.latexencode.__main__:main'
[tool.poetry.dependencies]
#python = "^2.7 || ^3.4" # This simply creates a dependency resolution mess that doesn't work.
#python = "^3.7" # hmm seems like it severly constrains other package versions
python = "^3.8"
[tool.poetry.dev-dependencies]
pytest = ">=7.0"
toml = "^0.10.2"
[tool.poetry.group.builddoc]
optional = true
[tool.poetry.group.builddoc.dependencies]
Sphinx = ">=5.0.0"
sphinx-issues = ">=3.0.0"
[tool.poetry.group.buildjslib]
optional = true
[tool.poetry.group.buildjslib.dependencies]
Transcrypt = ">=3.9.0"
PyYAML = ">=5.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
testpaths = [
"test",
]