-
Notifications
You must be signed in to change notification settings - Fork 69
/
setup.py
35 lines (32 loc) · 1.03 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 io
from setuptools import setup
with io.open("README.rst", "rt", encoding="utf8") as f:
long_description = f.read()
setup(
name='Flask-Dropzone',
version='2.0.0',
url='https://github.com/helloflask/flask-dropzone',
license='MIT',
author='Grey Li',
author_email='[email protected]',
description='Upload files in Flask with Dropzone.js.',
long_description=long_description,
packages=['flask_dropzone'],
zip_safe=False,
include_package_data=True,
platforms='any',
install_requires=[
'Flask'
],
keywords='flask extension development upload',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)