|
22 | 22 | setuptools.setup(
|
23 | 23 | name="streamlit-bokeh",
|
24 | 24 | version="3.6.2",
|
25 |
| - author="Streamlit", |
26 |
| - author_email="streamlitcommunity@snowflake.com", |
| 25 | + author="Snowflake Inc", |
| 26 | + author_email="hello@streamlit.io", |
27 | 27 | description="Streamlit component that allows you to render Bokeh charts",
|
28 | 28 | long_description=long_description,
|
29 | 29 | 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", |
31 | 38 | packages=setuptools.find_packages(),
|
32 | 39 | 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 | + ], |
34 | 54 | python_requires=">=3.9",
|
35 | 55 | install_requires=[
|
36 | 56 | # By definition, a Custom Component depends on Streamlit.
|
|
0 commit comments