forked from arsentievalex/streamlit-dynamic-filters
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (21 loc) · 790 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
from setuptools import setup, find_packages
VERSION = '0.1.6'
DESCRIPTION = "Dynamic multiselect filters for Streamlit"
with open("README.md", "r", encoding="utf-8") as fh:
readme = fh.read()
with open("CHANGELOG.md", "r", encoding="utf-8") as fh:
changelog = fh.read()
setup(
name="streamlit_dynamic_filters",
version=VERSION,
author="Oleksandr Arsentiev",
author_email="<arsentiev9393@gmail.com>",
description=DESCRIPTION,
long_description=f"{readme}\n\n{changelog}",
long_description_content_type="text/markdown",
packages=find_packages(),
install_requires=['streamlit'],
keywords=['streamlit', 'custom', 'component'],
license="MIT",
url="https://github.com/arsentievalex/streamlit-dynamic-filters",
)