-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (36 loc) · 1.02 KB
/
Copy pathpyproject.toml
File metadata and controls
42 lines (36 loc) · 1.02 KB
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "mystquarto"
version = "0.1.2"
description = "Bidirectional MyST ↔ Quarto converter"
readme = "README.md"
license = "MIT-0"
requires-python = ">=3.10"
authors = [{ name = "Max Ghenis" }]
keywords = ["myst", "quarto", "markdown", "converter"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT No Attribution License (MIT-0)",
"Programming Language :: Python :: 3",
"Topic :: Text Processing :: Markup",
]
dependencies = [
"click>=8.0",
"pyyaml>=6.0",
]
[dependency-groups]
dev = ["pytest>=8.0", "ruff>=0.4"]
[project.scripts]
myst2quarto = "mystquarto.cli:myst2quarto"
quarto2myst = "mystquarto.cli:quarto2myst"
mystquarto = "mystquarto.cli:main"
[project.urls]
Homepage = "https://github.com/MaxGhenis/mystquarto"
Repository = "https://github.com/MaxGhenis/mystquarto"
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.ruff]
line-length = 88