-
Notifications
You must be signed in to change notification settings - Fork 55
/
setup.py
67 lines (58 loc) · 1.95 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
"""
Flask-Cloudy
A wrapper around Apache-Libcloud to upload and save files on cloud storage
providers such as: AWS S3, Google Storage, Microsoft Azure, Rackspace Cloudfiles,
and even on local storage through a Flask application.
(It can be used as standalone)
Supported storage:
- AWS S3
- Google Storage
- Microsoft Azure
- Rackspace CloudFiles
- Local
"""
from setuptools import setup, find_packages
__NAME__ = "Flask-Cloudy"
__version__ = "1.1.0"
__author__ = "Mardix"
__license__ = "MIT"
__copyright__ = "2017"
setup(
name=__NAME__,
version=__version__,
license=__license__,
author=__author__,
author_email='[email protected]',
description="Flask-Cloudy is a simple flask extension and standalone library to upload and save files on S3, Google storage or other Cloud Storages",
long_description=__doc__,
url='https://github.com/mardix/flask-cloudy/',
download_url='http://github.com/mardix/flask-cloudy/tarball/master',
py_modules=['flask_cloudy'],
include_package_data=True,
packages=find_packages(),
install_requires=[
"Flask",
"apache-libcloud",
"lockfile",
"six",
'python-slugify'
],
keywords=["flask", "s3", "aws", "cloudfiles", "storage", "azure", "google", "cloudy"],
platforms='any',
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
],
zip_safe=False
)