forked from asg017/streamlit-observable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (25 loc) · 793 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
25
26
27
import setuptools
from os import path
def get_long_description():
with open(
path.join(path.dirname(path.abspath(__file__)), "README.md"),
encoding="utf8",
) as f:
return f.read()
setuptools.setup(
name="streamlit-observable",
version="0.0.8",
author="Alex Garcia",
author_email="[email protected]",
description="A Streamlit component for embedding Observable notebooks in Streamlit Apps",
long_description=get_long_description(),
long_description_content_type="text/markdown",
url="https://github.com/asg017/streamlit-observable",
packages=setuptools.find_packages(),
include_package_data=True,
classifiers=[],
python_requires=">=3.6",
install_requires=[
"streamlit >= 0.63",
],
)