-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathsetup.py
More file actions
17 lines (16 loc) · 570 Bytes
/
setup.py
File metadata and controls
17 lines (16 loc) · 570 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import setuptools
setuptools.setup(
name="streamlit-embedcode",
version="0.1.2",
author="Randy Zwitch",
author_email="randy@streamlit.io",
description="Streamlit component for embedded code snippets",
long_description="Streamlit component for embedded code snippets",
long_description_content_type="text/plain",
url="https://github.com/randyzwitch/streamlit-embedcode",
packages=setuptools.find_packages(),
include_package_data=True,
classifiers=[],
python_requires=">=3.6",
install_requires=["streamlit >= 0.63"],
)