-
Notifications
You must be signed in to change notification settings - Fork 48
/
setup.py
48 lines (42 loc) · 1.32 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
from pathlib import Path
import setuptools
VERSION = "0.1.0" # PEP-440
NAME = "st-gsheets-connection"
INSTALL_REQUIRES = [
"streamlit>=1.32.0",
"gspread>=5.8.0, <6",
"gspread-pandas>=3.2.2",
"gspread-dataframe>=3.3.0",
"gspread-formatting>=1.1.2",
"duckdb>=0.8.1",
"sql-metadata>=2.7.0",
"validators>=0.22.0",
]
setuptools.setup(
name=NAME,
version=VERSION,
description="Streamlit Connection for Google Sheets.",
url="https://github.com/streamlit/gsheets-connection",
project_urls={
"Source Code": "https://github.com/streamlit/gsheets-connection",
},
author="Tomasz Szerszeń",
author_email="[email protected]",
license="Apache License 2.0",
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.10",
],
# Snowpark requires Python 3.8
python_requires=">=3.8",
# Requirements
install_requires=INSTALL_REQUIRES,
packages=["streamlit_gsheets"],
long_description=Path("README.md").read_text(),
long_description_content_type="text/markdown",
)