diff --git a/examples/requirements.txt b/examples/requirements.txt index 171ee39..7d9ac2e 100644 --- a/examples/requirements.txt +++ b/examples/requirements.txt @@ -1,2 +1,2 @@ -streamlit +streamlit>=0.63 streamlit-embedcode \ No newline at end of file diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..9a11903 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,3 @@ +# this is a shim to work with S4A for now, until requirements are read from folder containing the Streamlit Python script +streamlit>=0.63 +streamlit-embedcode \ No newline at end of file diff --git a/setup.py b/setup.py index 7075512..3b957ed 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setuptools.setup( name="streamlit-embedcode", - version="0.0.2", + version="0.1.0", author="Randy Zwitch", author_email="randy@streamlit.io", description="Streamlit component for embedded code snippets", @@ -13,5 +13,5 @@ include_package_data=True, classifiers=[], python_requires=">=3.6", - install_requires=["streamlit >= 0.62"], + install_requires=["streamlit >= 0.63"], )