-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (32 loc) · 817 Bytes
/
pyproject.toml
File metadata and controls
35 lines (32 loc) · 817 Bytes
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
[project]
name = "streamlit-slickgrid"
version = "0.2.0" # Also update src/frontend/package.json
authors = [
{ name = "Thiago Teixeira", email = "thiago.teixeira@snowflake.com" },
]
description = "A Streamlit component that wraps SlickGrid"
readme = "README.md"
keywords = []
#maintainers = []
license = { text = "Apache 2.0" }
requires-python = ">=3.9.0"
dependencies = [
# Version picked at random.
"streamlit >= 1.40.0",
]
classifiers = []
dynamic = []
entry-points = {}
gui-scripts = {}
scripts = {}
urls = {}
[build-system]
requires = ["build", "setuptools"]
[tool.setuptools]
# Fix a bug in setuptools.
# See: https://github.com/astral-sh/uv/issues/9513
# Remove this when setuptools is fixed.
license-files = []
[tool.setuptools.packages.find]
include = ["streamlit_slickgrid"]
# See also MANIFEST.in