generated from gabrieltempass/streamlit-component-vue-vite-template
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathsetup.py
62 lines (58 loc) · 2.38 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
from pathlib import Path
from setuptools import setup
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name="streamlit-navigation-bar",
version="3.3.0",
description="A component that allows you to place a navigation bar in your Streamlit app.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/gabrieltempass/streamlit-navigation-bar",
project_urls={
"Source Code": "https://github.com/gabrieltempass/streamlit-navigation-bar",
"Bug Tracker": "https://github.com/gabrieltempass/streamlit-navigation-bar/issues",
"Release notes": "https://github.com/gabrieltempass/streamlit-navigation-bar/releases",
"Documentation": "https://github.com/gabrieltempass/streamlit-navigation-bar/wiki/API-reference",
"Community": "https://discuss.streamlit.io/t/new-component-streamlit-navigation-bar/66032",
},
author="Gabriel Tem Pass",
author_email="[email protected]",
license="MIT License",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Database :: Front-Ends",
"Topic :: Office/Business :: Financial :: Spreadsheet",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: Widget Sets",
],
packages=[
"streamlit_navigation_bar",
],
include_package_data=True,
package_data={
"streamlit_navigation_bar": ["templates/*.css"],
},
entry_points={
"console_scripts": [
"streamlit-navigation-bar = streamlit_navigation_bar:print_version",
]
},
python_requires=">=3.8",
install_requires=[
"streamlit >= 1.33.0",
"st-theme >= 1.2.3",
],
)