forked from jeanphix/django-resumable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (29 loc) · 941 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 -*-
from distutils.core import setup
from setuptools import find_packages
setup(
name='django-flow',
version='0.1.1',
author=u'Madhukar Mishra, serafinjp@gmail.com(original author)',
author_email='madhukar93@gmail.com, jean-philippe serafin',
packages=find_packages(),
include_package_data=True,
url='https://github.com/madhukar93/django-flow/',
license='MIT licence',
description='Django resumable uploads',
long_description=open('README.rst').read(),
install_requires=[
'Django>=1.4',
'python-magic',
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python',
],
zip_safe=False,
)