forked from xtream1101/s3-tar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (29 loc) · 812 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
25
26
27
28
29
30
31
32
33
from setuptools import setup
with open('README.md', 'r') as f:
long_description = f.read()
setup(
name='s3-tar',
packages=['s3_tar'],
version='0.1.13',
description='Tar (and compress) files in s3',
long_description=long_description,
long_description_content_type='text/markdown',
author='Eddy Hintze',
author_email="[email protected]",
url="https://github.com/xtream1101/s3-tar",
license='MIT',
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
],
entry_points={
'console_scripts': [
's3-tar=s3_tar.cli:cli',
],
},
install_requires=[
'boto3',
],
)