Skip to content

Commit

Permalink
fix: frontend build dir
Browse files Browse the repository at this point in the history
  • Loading branch information
ObservedObserver committed Nov 22, 2023
1 parent b5fc6b7 commit 31d31c0
Show file tree
Hide file tree
Showing 5 changed files with 52 additions and 10 deletions.
2 changes: 1 addition & 1 deletion MANIFEST.in
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
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# 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

Expand All @@ -12,6 +13,9 @@ 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
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "streamlit-shadcn-ui"
version = "0.1.2"
version = "0.1.3"
readme = "README.md"
keywords = ["streamlit", "shadcn", "ui", "components"]
description = "Using shadcn components in Streamlit"
Expand Down
12 changes: 6 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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=[],
Expand Down
42 changes: 40 additions & 2 deletions streamlit_shadcn_ui.egg-info/PKG-INFO
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
Expand All @@ -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

0 comments on commit 31d31c0

Please sign in to comment.