-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
24 lines (21 loc) · 885 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name='streamlit_ws_localstorage',
packages=setuptools.find_packages(),
version='1.0.6', # Ideally should be same as your GitHub release tag varsion
description="A simple synchronous way of accessing localStorage from your Streamlit app.",
long_description=long_description,
long_description_content_type="text/markdown",
author='Gagandeep Singh',
author_email='[email protected]',
url='https://github.com/gagangoku/streamlit-ws-localstorage',
download_url='https://github.com/gagangoku/streamlit-ws-localstorage/archive/refs/tags/1.0.6.tar.gz',
keywords=['python', 'websocket', 'cookies', 'localstorage', 'streamlit'],
classifiers=[],
python_requires=">=3.6",
install_requires=[
"streamlit >= 0.86",
],
)