forked from helloflask/flask-dropzone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
49 lines (46 loc) · 1.54 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
# -*- coding: utf-8 -*-
"""
Flask-Dropzone
--------------
:copyright: (c) 2017 by Grey Li.
:license: MIT, see LICENSE for more details.
Upload file in Flask with Dropzone.js.
"""
from setuptools import setup
with open('README.rst') as f:
long_description = f.read()
setup(
name='Flask-Dropzone',
version='1.4.2',
url='https://github.com/greyli/flask-dropzone',
download_url='https://github.com/greyli/flask-dropzone/tarball/1.4.2',
license='MIT',
author='Grey Li',
author_email='[email protected]',
description='Upload file in Flask with Dropzone.js.',
long_description=long_description,
py_modules=['flask_dropzone'],
zip_safe=False,
include_package_data=True,
platforms='any',
install_requires=[
'Flask'
],
keywords='flask extension development upload',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)