-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (35 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.1.0"
NAME = "st_s3kv_connection"
INSTALL_REQUIRES = [
'pycryptodome',
'cloudpickle',
'boto3',
]
setuptools.setup(
name=NAME,
version=VERSION,
description="Streamlit S3 connection acting as a key-value store.",
url="https://github.com/mobarski/st_s3kv_connection",
project_urls={
"Source Code": "https://github.com/mobarski/st_s3kv_connection",
},
author="Maciej Obarski",
author_email="mobarski@gmail.com",
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.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
python_requires=">=3.8",
# Requirements
install_requires=INSTALL_REQUIRES,
packages=["st_s3kv_connection"]
)