-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
35 lines (31 loc) · 981 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
[build-system]
requires = ["setuptools>=60", "setuptools-scm>=8.0"]
build-backend = "setuptools.build_meta"
[project]
name = "install-texlive"
description = "Install texlive without human interaction in the process"
license = {text = "MIT License"}
authors = [
{ name = "Maximilian Linhoff", email = "[email protected]" },
]
requires-python = ">=3.8"
dependencies = [
"pexpect",
"requests",
]
readme = "README.md"
dynamic = ["version"]
classifiers = [
"License :: OSI Approved :: MIT License",
"Development Status :: 5 - Production/Stable",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Text Processing :: Markup :: LaTeX",
]
[project.urls]
repository = "http://github.com/maxnoe/texlive-batch-installation"
[project.scripts]
install_texlive = "install_texlive.__main__:main"
[tool.setuptools_scm]
version_file = "install_texlive/_version.py"