Spaces:
Configuration error
Configuration error
File size: 561 Bytes
e2f925b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
from pathlib import Path
import setuptools
setuptools.setup(
name="streamlit-quill",
version="0.0.3",
author="Ghasel",
author_email="",
description="Quill component for Streamlit",
long_description=(Path(__file__).parent / "README.md").read_text(),
long_description_content_type="text/markdown",
url="https://github.com/Ghasel/streamlit-quill",
packages=setuptools.find_packages(),
include_package_data=True,
classifiers=[],
python_requires=">=3.6",
install_requires=[
"streamlit >= 0.63",
],
)
|