Skip to content

Commit

Permalink
Update manifest and version
Browse files Browse the repository at this point in the history
  • Loading branch information
blackary committed Sep 2, 2022
1 parent a1c4598 commit cb36c02
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 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 src/st_keyup/frontend/build *
recursive-include src/st_keyup/frontend *
include README.md
include LICENSE
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,13 @@

setuptools.setup(
name="streamlit-keyup",
version="0.1.6",
version="0.1.7",
author="Zachary Blackwood",
author_email="[email protected]",
description="Text input that renders on keyup",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/blackary/streamlit-keyup",
# packages=setuptools.find_packages(),
packages=setuptools.find_packages(where="src"),
package_dir={"": "src"},
include_package_data=True,
Expand Down
2 changes: 1 addition & 1 deletion src/st_keyup/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import streamlit as st
import streamlit.components.v1 as components

build_dir = Path(__file__).parent / "frontend"
build_dir = Path(__file__).parent.absolute() / "frontend"
_component_func = components.declare_component("st_keyup", path=str(build_dir))


Expand Down

0 comments on commit cb36c02

Please sign in to comment.