-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
39 lines (34 loc) · 1.06 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
import setuptools
VERSION = "0.0.4"
NAME = "st-airtable-connection"
INSTALL_REQUIRES = [
"streamlit>=1.22.0",
"pyairtable>=2.0.0",
]
setuptools.setup(
name=NAME,
version=VERSION,
description="Streamlit Connection for Airtable.",
url="https://github.com/marks/streamlit-airtable-connection",
project_urls={
"Source Code": "https://github.com/marks/streamlit-airtable-connection",
},
author="Mark Silverberg",
author_email="[email protected]",
license="MIT",
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",
],
python_requires=">=3.8",
# Requirements
install_requires=INSTALL_REQUIRES,
packages=["streamlit_airtable"],
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
)