Skip to content

Commit

Permalink
fill out setup
Browse files Browse the repository at this point in the history
  • Loading branch information
hoggatt committed Sep 13, 2023
1 parent e4c5f48 commit ae8c145
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,18 +1,24 @@
import setuptools

with open('README.md') as f:
long_description = f.read()

setuptools.setup(
name="st-combobox",
version="0.1.0",
version="0.1.1",
author="hoggatt",
description="Autocomplete Combobox",
long_description="Streamlit combobox that dynamically updates "
+ "and provides a list of suggestions based on a provided function",
long_description_content_type="text/plain",
description="Streamlit AutoComplete ComboBox",
long_description=long_description,
long_description_content_type='text/markdown',
url="https://github.com/hoggatt/st-combobox",
packages=setuptools.find_packages(),
include_package_data=True,
license='MIT',
classifiers=[],
python_requires=">=3.7, !=3.9.7",
project_urls={
'Source Code': 'https://github.com/hoggatt/st-combobox',
},
python_requires=">=3.7",
install_requires=[
"streamlit >= 1.0",
],
Expand Down

0 comments on commit ae8c145

Please sign in to comment.