forked from vast-engineering/s3select
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
24 lines (23 loc) · 782 Bytes
/
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
# coding=utf-8
import setuptools
setuptools.setup(
name='s3select',
version='0.0.14',
scripts=['s3select'],
author="Marko Baštovanović",
author_email="[email protected]",
description="S3 select utility package",
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
url="https://github.com/marko-bast/s3select",
packages=setuptools.find_packages(),
classifiers=[
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.7',
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=['requests[security]>=2.18.3',
'pyasn1>=0.4.2',
'boto3>=1.7.79']
)