generated from LinXueyuanStdio/streamlit-diff-viewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
27 lines (21 loc) · 827 Bytes
/
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
[tool.poetry]
name = "streamlit-markdown"
version = "1.0.9"
homepage = "https://github.com/LinXueyuanStdio/streamlit-markdown"
description = "A Streamlit component to display markdown, which supports table, code switch, LaTeX, mermaid, and more."
authors = ["Xueyuan Lin <[email protected]>"]
readme = "README.md"
packages = [{ include = "streamlit_markdown"}]
license = "MIT"
# Only include the out directory of the frontend
# The order of the include/exclude lists is important!
include = ["streamlit_markdown/frontend/out/**", "docs/**"]
exclude = ["streamlit_markdown/frontend/*"]
[tool.poetry.dependencies]
python = ">=3.8,<3.9.7 || >3.9.7,<4.0"
streamlit = ">=0.63"
[tool.poetry.group.dev.dependencies]
watchdog = "^3.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"