-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
dd89188
commit 0a93752
Showing
1 changed file
with
11 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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", | ||
], | ||
) |