Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Size: Mime:
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-dharpa",
    version="0.0.8",
    author="Alex Garcia",
    author_email="alexsebastian.garcia@gmail.com",
    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",
    ],
)