-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (46 loc) · 1.38 KB
/
Copy pathpyproject.toml
File metadata and controls
53 lines (46 loc) · 1.38 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "streamdown"
version = "0.36.7"
description = "A streaming markdown renderer for modern terminals with syntax highlighting"
readme = "README.md"
requires-python = ">=3.8"
license = {text = "MIT"}
authors = [
{name = "Chris McKenzie", email = "kristopolous@yahoo.com"},
]
keywords = ["markdown", "terminal", "renderer", "cli", "syntax-highlighting"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Text Processing :: Markup",
"Topic :: Utilities",
]
dependencies = [
"pygments",
"appdirs",
"toml",
"wcwidth",
"pylatexenc",
]
[project.optional-dependencies]
images = ["term-image"]
[project.urls]
"Homepage" = "https://github.com/day50-dev/Streamdown"
"Bug Tracker" = "https://github.com/day50-dev/Streamdown/issues"
[project.scripts]
streamdown = "streamdown.sd:main"
sd = "streamdown.sd:main"
[tool.hatch.build.targets.wheel]
packages = ["streamdown"]
include = ["streamdown/plugins/*"]
exclude = ["venv", "dist", ".git"]