Initial commit. Documentation to follow this week

This commit is contained in:
Edward Robinson
2012-10-01 21:18:27 +01:00
parent 7ce3e5438d
commit 2a7b0f6bce
21 changed files with 2018 additions and 1 deletions
+37
View File
@@ -0,0 +1,37 @@
"""
Flask-S3
-------------
Easily serve your static files from Amazon S3.
"""
from setuptools import setup
setup(
name='Flask-S3',
version='0.1',
url='http://github.com/e-dard/flask-s3',
license='WTFPL',
author='Edward Robinson',
author_email='me@eddrobinson.net',
description='Seamlessly serve the static files of your Flask app from Amazon S3',
long_description=__doc__,
py_modules=['flask_s3'],
zip_safe=False,
include_package_data=True,
platforms='any',
install_requires=[
'Flask',
'Boto>=2.5.2'
],
tests_require=['nose', 'mock'],
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: WTFPL',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)