-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
36 lines (29 loc) · 854 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
34
35
36
"""
Flask-Imgur
-----------
This is simple flask extension allowing uploading
images straight to Imgur image hosting service.
"""
from setuptools import setup
setup(
name="Flask-Imgur",
version="0.1",
url="https://github.com/exaroth/flask-imgur",
license="BSD",
author="Konrad Wasowicz",
author_email="exaroth@gmail.com",
description="Upload images straight to Imgur",
long_description=__doc__,
zip_safe=False,
packages=["flask-imgur"],
include_package_data=True,
platforms="any",
install_requires=["Flask", "six >= 1.7.3"],
classifiers=[
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules"
]
)