-
Notifications
You must be signed in to change notification settings - Fork 21
/
setup.py
31 lines (29 loc) · 897 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-resumable',
version='0.2.0-dev',
author=u'jean-philippe serafin',
author_email='[email protected]',
packages=find_packages(),
include_package_data=True,
url='https://github.com/jeanphix/django-resumable',
license='MIT licence',
description='Django resumable uploads',
long_description=open('README.rst').read(),
install_requires=[
'Django>=1.10',
'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,
)