-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
45 lines (39 loc) · 841 Bytes
/
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
[build-system]
requires = [
"setuptools",
"setuptools_scm[toml]",
"wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "tex2docx"
authors = [
{name = "Mingzefei", email = "[email protected]"}
]
readme = "README.md"
dynamic = ["version"]
description = "A project to convert LaTeX to DOCX"
requires-python = ">=3.8"
dependencies = [
"regex",
"tqdm",
"typer",
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.optional-dependencies]
dev = [
"ruff",
"mypy",
"pytest"
]
[project.scripts]
"tex2docx" = "tex2docx:cli.app"
[tool.setuptools]
packages = ["tex2docx"]
[tool.setuptools_scm]
version_scheme = "post-release"
local_scheme = "no-local-version"