-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (32 loc) · 821 Bytes
/
pyproject.toml
File metadata and controls
36 lines (32 loc) · 821 Bytes
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
[project]
name = "tinytex"
version = "0.2.1"
authors = [
{ name="Sam Izdat", email="ghsamizdat@gmail.com" },
]
description = "Lorem ipsum"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"numpy>=1.21.5,<2.0.0",
"tinycio>=0.6.1",
"scikit-fmm~=2023.4.2",
"scipy~=1.13.0",
"toml>=0.10.2,<1.0.0",
"tqdm>=4.66.1,<5.0.0 "
]
[project.scripts]
ttex-setup = "tinytex.scripts.post_install:main_cli"
[tool.tinytex_about]
release = "a"
[project.urls]
Homepage = "https://sam-izdat.github.io/tinytex"
Issues = "https://github.com/Sam-Izdat/tinytex/issues"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"