-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
62 lines (53 loc) · 1.57 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
[project]
name = "tex-minify"
version = "0.2.6"
description = "A CLI tool to expand \\input commands in TeX files and filter BibTeX files based on citations."
authors = [
{name = "Dariush Wahdany", email = "[email protected]"},
]
dependencies = [
"click>=8.1.0",
]
requires-python = ">=3.11"
readme = "README.md"
license = {text = "MIT"}
keywords = ["latex", "tex", "cli", "preprocessor"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.11",
"Topic :: Text Processing :: Markup :: LaTeX",
]
[project.urls]
Homepage = "https://github.com/yourusername/tex-minify"
Repository = "https://github.com/yourusername/tex-minify.git"
"Bug Tracker" = "https://github.com/yourusername/tex-minify/issues"
[project.scripts]
tex-minify = "tex_minify.cli:cli"
[project.entry-points."uvx"]
tex-minify = "tex_minify.cli:cli"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.metadata]
allow-direct-references = true
[tool.pixi.project]
name = "tex-minify"
channels = ["conda-forge"]
platforms = ["osx-arm64", "linux-64", "win-64"]
[tool.pixi.dependencies]
python = ">=3.11"
pip = "*"
click = ">=8.1.0"
pytest = ">=7.0.0"
[tool.pixi.host-dependencies]
bump2version = "*"
[tool.pixi.tasks]
install = "pip install -e ."
test = "pytest tests/"
build = "pip install build && python -m build"
bump-patch = "bump2version patch"
bump-minor = "bump2version minor"
bump-major = "bump2version major"