-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b5fc6b7
commit 31d31c0
Showing
5 changed files
with
52 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
recursive-include streamlit_shadcn_ui/components/packages/frontend/build * | ||
recursive-include streamlit_shadcn_ui/components/packages/frontend/dist * | ||
include LICENSE | ||
include README.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,18 +2,18 @@ | |
|
||
import setuptools | ||
|
||
# this_directory = Path(__file__).parent | ||
# long_description = (this_directory / "README.md").read_text() | ||
with open("README.md", "r") as fh: | ||
long_description = fh.read() | ||
|
||
setuptools.setup( | ||
name="streamlit-shadcn-ui", | ||
version="0.1.1", | ||
version="0.1.3", | ||
author="Elwynn Chen", | ||
author_email="[email protected]", | ||
description="Use shadcn-ui components in Streamlit", | ||
# long_description=long_description, | ||
# long_description_content_type="text/markdown", | ||
url="", | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
url="https://github.com/ObservedObserver/streamlit-shadcn-ui", | ||
packages=setuptools.find_packages(), | ||
include_package_data=True, | ||
classifiers=[], | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
Metadata-Version: 2.1 | ||
Name: streamlit-shadcn-ui | ||
Version: 0.1.2 | ||
Version: 0.1.3 | ||
Summary: Using shadcn components in Streamlit | ||
Home-page: | ||
Home-page: https://github.com/ObservedObserver/streamlit-shadcn-ui | ||
Author: Elwynn Chen | ||
Author-email: Observed Observer <[email protected]> | ||
License: MIT License | ||
|
@@ -27,10 +27,48 @@ License: MIT License | |
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. | ||
|
||
Project-URL: homepage, https://github.com/ObservedObserver/streamlit-shadcn-ui | ||
Project-URL: repository, https://github.com/ObservedObserver/streamlit-shadcn-ui | ||
Keywords: streamlit,shadcn,ui,components | ||
Classifier: Programming Language :: Python :: 3 | ||
Classifier: License :: OSI Approved :: MIT License | ||
Classifier: Operating System :: OS Independent | ||
Requires-Python: >=3.7 | ||
Description-Content-Type: text/markdown | ||
License-File: LICENSE | ||
Requires-Dist: streamlit | ||
Requires-Dist: pandas | ||
|
||
# streamlit-shadcn-ui :construction: | ||
|
||
[![PyPI - Version](https://img.shields.io/pypi/v/streamlit-shadcn-ui)](https://pypi.org/project/streamlit-shadcn-ui/) | ||
[![Streamlit App](https://static.streamlit.io/badges/streamlit_badge_black_white.svg)](https://shadcn.streamlit.app/) | ||
|
||
Using shadcn-ui components in streamlit | ||
|
||
|
||
## Installation | ||
|
||
```bash | ||
pip install streamlit-shadcn-ui | ||
``` | ||
|
||
## Components | ||
|
||
Check docs and compoenent examples in [![Streamlit App](https://static.streamlit.io/badges/streamlit_badge_black_white.svg)](https://shadcn.streamlit.app/) | ||
|
||
+ [x] button | ||
+ [x] checkbox | ||
+ [x] select | ||
+ [x] tabs | ||
+ [x] card | ||
+ [x] containers | ||
+ [x] avatar | ||
+ [x] date_picker | ||
+ [ ] date_range_picker | ||
+ [x] table | ||
+ [x] input | ||
+ [x] slider | ||
+ [x] textarea | ||
+ [x] switch | ||
+ [x] radio_group |