-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (30 loc) · 839 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
from setuptools import setup
setup(
name='s3cache',
version='0.1.1',
description='Local cache of S3 buckets',
long_description=open('README.rst').read(),
url='https://github.com/vincetse/python-s3-cache',
author='Vince Tse, based on work by Niall McCarroll',
author_email='[email protected]',
packages=['s3cache'],
install_requires=[
'boto',
],
tests_require=[
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Topic :: System :: Filesystems',
],
keywords=[
'aws',
's3',
'cache',
]
)