forked from m-wrzr/streamlit-searchbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (27 loc) · 754 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import setuptools
with open('README.md') as f:
long_description = f.read()
setuptools.setup(
name="st-combobox",
version="1.2.0",
author="hoggatt",
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=[],
project_urls={
'Source Code': 'https://github.com/hoggatt/st-combobox',
},
python_requires=">=3.7",
install_requires=[
"streamlit >= 1.27.0",
],
extras_require={
"tests": ["wikipedia"],
"dev": ["black", "isort", "ruff"],
},
)