|
| 1 | +# Copyright (c) Snowflake Inc. (2025) |
| 2 | +# |
| 3 | +# Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | +# you may not use this file except in compliance with the License. |
| 5 | +# You may obtain a copy of the License at |
| 6 | +# |
| 7 | +# http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | +# |
| 9 | +# Unless required by applicable law or agreed to in writing, software |
| 10 | +# distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | +# See the License for the specific language governing permissions and |
| 13 | +# limitations under the License. |
| 14 | + |
| 15 | +[build-system] |
| 16 | +requires = ["setuptools>=61.0", "wheel"] |
| 17 | +build-backend = "setuptools.build_meta" |
| 18 | + |
| 19 | +[project] |
| 20 | +name = "streamlit-bokeh" |
| 21 | +version = "3.8.0" |
| 22 | +description = "Streamlit component that allows you to render Bokeh charts" |
| 23 | +readme = "README.md" |
| 24 | +license = "Apache-2.0" |
| 25 | +authors = [{ name = "Snowflake Inc", email = "[email protected]" }] |
| 26 | +requires-python = ">=3.9" |
| 27 | +classifiers = [ |
| 28 | + "Development Status :: 5 - Production/Stable", |
| 29 | + "Environment :: Console", |
| 30 | + "Environment :: Web Environment", |
| 31 | + "Intended Audience :: Developers", |
| 32 | + "Intended Audience :: Science/Research", |
| 33 | + "License :: OSI Approved :: Apache Software License", |
| 34 | + "Programming Language :: Python :: 3.9", |
| 35 | + "Programming Language :: Python :: 3.10", |
| 36 | + "Programming Language :: Python :: 3.11", |
| 37 | + "Programming Language :: Python :: 3.12", |
| 38 | + "Programming Language :: Python :: 3.13", |
| 39 | + "Topic :: Scientific/Engineering :: Visualization", |
| 40 | +] |
| 41 | +dependencies = ["streamlit>=1.26", "bokeh==3.8.0"] |
| 42 | + |
| 43 | +[project.optional-dependencies] |
| 44 | +devel = [ |
| 45 | + "wheel", |
| 46 | + "pytest==7.4.0", |
| 47 | + "playwright==1.48.0", |
| 48 | + "requests==2.31.0", |
| 49 | + "pytest-playwright-snapshot==1.0", |
| 50 | + "pytest-rerunfailures==12.0", |
| 51 | +] |
| 52 | + |
| 53 | +[project.urls] |
| 54 | +Homepage = "https://streamlit.io" |
| 55 | +"Source Code" = "https://github.com/streamlit/streamlit-bokeh" |
| 56 | +"Bug Tracker" = "https://github.com/streamlit/streamlit/issues" |
| 57 | +Community = "https://discuss.streamlit.io/" |
| 58 | +Twitter = "https://twitter.com/streamlit" |
| 59 | + |
| 60 | +[tool.setuptools] |
| 61 | +include-package-data = true |
| 62 | + |
| 63 | +[tool.setuptools.packages.find] |
| 64 | +where = ["."] |
| 65 | +include = ["streamlit_bokeh*"] |
| 66 | +exclude = ["e2e_playwright*", "scripts*", "build*", "dist*", "venv*", ".*"] |
| 67 | + |
| 68 | +[tool.setuptools.package-data] |
| 69 | +streamlit_bokeh = ["frontend/build/**/*", "pyproject.toml"] |
0 commit comments