-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
35 lines (33 loc) · 1.1 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
import codecs
import glob
import os
from setuptools import setup
setup(
name='caching-s3-proxy',
version='0.7',
description=('provides an unauthenticated plain HTTP frontend for'
' public and private S3 buckets, and caches on the'
' filesystem using an LRU cache'),
author='Rob Helmer',
author_email='rhelmer@rhelmer.org',
license='MPL',
url='https://github.com/rhelmer/caching-s3-proxy',
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: Mozilla Public License 1.1 (MPL 1.1)',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Topic :: Internet :: WWW/HTTP :: WSGI :: Application',
],
packages=['proxy'],
keywords=['caching', 'lru', 's3', 'proxy', 'unauthenticated'],
install_requires=['boto3>=1.6.22'],
entry_points={
'console_scripts': [
'caching-s3-proxy = proxy.run:main'
],
},
test_suite='nose.collector',
zip_safe=False,
),