-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (39 loc) · 1.08 KB
/
pyproject.toml
File metadata and controls
45 lines (39 loc) · 1.08 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "colloquium"
version = "0.2.1"
description = "Agent-native slide creation tool for research talks"
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
authors = [
{ name = "Nathan Lambert" },
]
keywords = ["slides", "presentations", "markdown", "research", "academic"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Text Processing :: Markup :: Markdown",
]
dependencies = [
"markdown-it-py>=3.0",
"mdit-py-plugins>=0.4",
"pyyaml>=6.0",
"pybtex>=0.24",
]
[project.optional-dependencies]
dev = ["pytest>=7.0"]
pptx = ["python-pptx>=1.0"]
[project.scripts]
colloquium = "colloquium.cli:main"
[project.urls]
Homepage = "https://github.com/natolambert/colloquium"
Repository = "https://github.com/natolambert/colloquium"
[tool.hatch.build.targets.wheel]
packages = ["colloquium"]
[tool.pytest.ini_options]
testpaths = ["tests"]