-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
31 lines (29 loc) · 957 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
# coding: utf-8
__author__ = 'Consortium Érudit'
from setuptools import setup, find_packages
setup(
name="django-resumable-uploads",
version="1.0.12",
description="""
django-resumable-uploads is a multi file upload app for django.
Uses plupload""",
long_description=open('README.md').read(),
author="Consortium Erudit",
author_email="tech@erudit.org",
url="",
license="GPLv2",
packages=find_packages(),
include_package_data=True,
install_requires=['django', 'humanfriendly', 'simplejson'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
"License :: OSI Approved :: BSD License",
'Topic :: Software Development :: Libraries :: Python Modules ',
],
zip_safe=False,
)