-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
81 lines (71 loc) · 2.11 KB
/
pyproject.toml
File metadata and controls
81 lines (71 loc) · 2.11 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
[build-system]
requires = ["setuptools>=68.0", "setuptools-scm>=8.0"]
build-backend = "setuptools.build_meta"
[project]
name = "cdl-slides"
version = "1.2.0"
description = "Compile Markdown files into CDL-themed Marp presentations"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.9"
authors = [
{name = "Contextual Dynamics Lab", email = "contextualdynamics@gmail.com"},
]
keywords = ["marp", "slides", "presentation", "markdown", "CDL", "Dartmouth"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Text Processing :: Markup :: Markdown",
]
dependencies = [
"click>=8.0",
"pygments>=2.15",
"manim>=0.18.0",
"Pillow>=9.0",
"imageio-ffmpeg>=0.5.1",
"pyyaml>=5.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"ruff>=0.4",
]
[project.urls]
Homepage = "https://www.context-lab.com"
Repository = "https://github.com/ContextLab/cdl-slides"
Issues = "https://github.com/ContextLab/cdl-slides/issues"
[project.scripts]
cdl-slides = "cdl_slides.cli:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
cdl_slides = [
"assets/themes/*.css",
"assets/themes/*.svg",
"assets/themes/*.png",
"assets/fonts/*.otf",
"assets/fonts/*.ttf",
"assets/images/*.svg",
"assets/js/*.js",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]
[tool.ruff]
target-version = "py39"
line-length = 120
[tool.ruff.lint]
select = ["E", "F", "W", "I"]
[tool.ruff.lint.per-file-ignores]
# Preprocessor contains embedded SVG/HTML templates that naturally exceed line length
"src/cdl_slides/preprocessor.py" = ["E501"]
"src/cdl_slides/poster_preprocessor.py" = ["E501"]