forked from teamtv/streamlit_modal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (32 loc) · 1.15 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
import setuptools
from distutils.core import setup
def setup_package():
with open("README.md", "r") as f:
readme = f.read()
setup(
name="streamlit_modal",
install_requires=['streamlit', 'deprecation'],
version="0.1.0",
author="Koen Vossen",
author_email="info@koenvossen.nl",
url="https://github.com/teamtv/streamlit_modal",
packages=setuptools.find_packages(),
license="BSD",
description="Modal for streamlit",
long_description=readme,
long_description_content_type="text/markdown",
classifiers=[
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved",
"Topic :: Scientific/Engineering",
]
)
if __name__ == "__main__":
setup_package()