Skip to content

Commit e5b7a39

Browse files
Update bokeh package config (#22)
* Update bokeh package config * Update README * Add license, url, and classifiers
1 parent f47065c commit e5b7a39

File tree

2 files changed

+26
-6
lines changed

2 files changed

+26
-6
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ streamlit_bokeh(YOUR_BOKEH_FIGURE, use_container_width=True, theme="streamlit",
5959
#### Parameters:
6060

6161
- **`figure`** (_bokeh.plotting.figure_): The Bokeh figure object to display.
62-
- **`use_container_width`** (_bool_, optional): Whether to override the figure's native width with the width of the parent container. This is `True` by default.
62+
- **`use_container_width`** (_bool_, optional): Whether to override the figure's native width with the width of the parent container. This is `True` by default.
6363
- **`theme`** (_str_, optional): The theme for the plot. This can be one of the following strings:
6464
- `"streamlit"` (default): Matches Streamlit's current theme.
6565
- A Bokeh theme name including:
@@ -108,7 +108,7 @@ For example, `3.6.x` will mirror a version of Bokeh that's `3.6.y`.
108108

109109
## 📝 Contributing
110110

111-
Feel free to file issues in [our Streamlit Repository](https://github.com/streamlit/streamlit-bokeh/issues/new/choose).
111+
Feel free to file issues in [our Streamlit Repository](https://github.com/streamlit/streamlit/issues/new/choose).
112112

113113
Contributions are welcome 🚀, however, please inform us before building a feature.
114114

setup.py

+24-4
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,35 @@
2222
setuptools.setup(
2323
name="streamlit-bokeh",
2424
version="3.6.2",
25-
author="Streamlit",
26-
author_email="streamlitcommunity@snowflake.com",
25+
author="Snowflake Inc",
26+
author_email="hello@streamlit.io",
2727
description="Streamlit component that allows you to render Bokeh charts",
2828
long_description=long_description,
2929
long_description_content_type="text/markdown",
30-
url="",
30+
project_urls={
31+
"Source Code": "https://github.com/streamlit/streamlit-bokeh",
32+
"Bug Tracker": "https://github.com/streamlit/streamlit/issues",
33+
"Community": "https://discuss.streamlit.io/",
34+
"Twitter": "https://twitter.com/streamlit",
35+
},
36+
url="https://streamlit.io",
37+
license="Apache License 2.0",
3138
packages=setuptools.find_packages(),
3239
include_package_data=True,
33-
classifiers=[],
40+
classifiers=[
41+
"Development Status :: 5 - Production/Stable",
42+
"Environment :: Console",
43+
"Environment :: Web Environment",
44+
"Intended Audience :: Developers",
45+
"Intended Audience :: Science/Research",
46+
"License :: OSI Approved :: Apache Software License",
47+
"Programming Language :: Python :: 3.9",
48+
"Programming Language :: Python :: 3.10",
49+
"Programming Language :: Python :: 3.11",
50+
"Programming Language :: Python :: 3.12",
51+
"Programming Language :: Python :: 3.13",
52+
"Topic :: Scientific/Engineering :: Visualization",
53+
],
3454
python_requires=">=3.9",
3555
install_requires=[
3656
# By definition, a Custom Component depends on Streamlit.

0 commit comments

Comments
 (0)