-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpyproject.toml
31 lines (28 loc) · 1014 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
27
28
29
30
31
[tool.poetry]
name = "streamlit-sortables"
version = "0.3.1"
description = "A Streamlit component to provide sortable list."
license = "Apache License (2.0)"
authors = ["ohtaman <[email protected]>"]
readme = "README.md"
homepage = "https://github.com/ohtaman/streamlit-sortables"
keywords = ["streamlit", "sortable", "list"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
exclude = ["streamlit_sortables/frontend/**/*"]
include = ["streamlit_sortables/frontend/build/**/*"]
[tool.poetry.dependencies]
python = "!=3.9.7,>=3.9"
streamlit = ">=1.0.0"
[tool.poetry.group.dev.dependencies]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"