Skip to content

Commit

Permalink
improve readme with missing fields
Browse files Browse the repository at this point in the history
  • Loading branch information
javierluraschi committed Mar 4, 2024
1 parent dd89188 commit 0a93752
Showing 1 changed file with 11 additions and 10 deletions.
21 changes: 11 additions & 10 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,22 +1,23 @@
import setuptools
from pathlib import Path

this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()

setuptools.setup(
name="streamfy",
version="0.2.8",
author="",
author_email="",
description="",
long_description="",
long_description_content_type="text/plain",
url="",
version="0.2.9",
author="Javier Luraschi",
author_email="[email protected]",
description="Modern frontend web components based on Buefy for Streamlit.",
long_description=long_description,
long_description_content_type='text/markdown',
url="https://github.com/hal9ai/streamfy",
packages=setuptools.find_packages(),
include_package_data=True,
classifiers=[],
python_requires=">=3.6",
install_requires=[
# By definition, a Custom Component depends on Streamlit.
# If your component has other Python dependencies, list
# them here.
"streamlit >= 0.63",
],
)

0 comments on commit 0a93752

Please sign in to comment.