-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
32 lines (27 loc) · 898 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
32
#!/usr/bin/env python
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
with open('VERSION.txt', 'r') as v:
version = v.read().strip()
with open('README.rst', 'r') as r:
readme = r.read()
download_url = (
'https://github.com/jerinpetergeorge/django-chunk-upload/tarball/%s'
)
setup(
name='django-chunk-upload',
packages=['django_chunk_upload'],
version=version,
description=('Upload large files to Django in multiple chunks, with the '
'ability to resume if the upload is interrupted.'),
long_description=readme,
long_description_content_type='text/x-rst',
author='Jerin Peter George',
author_email='[email protected]',
url='https://github.com/jerinpetergeorge/django-chunk-upload',
download_url=download_url % version,
install_requires=[],
license='MIT-Zero'
)