-
Notifications
You must be signed in to change notification settings - Fork 73
/
setup.py
31 lines (26 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
#!/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/juliomalegria/django-chunked-upload/tarball/%s'
)
setup(
name='django-chunked-upload',
packages=['chunked_upload', 'chunked_upload.migrations', 'chunked_upload.management'],
version=version,
description=('Upload large files to Django in multiple chunks, with the '
'ability to resume if the upload is interrupted.'),
long_description=readme,
author='Julio M Alegria',
author_email='[email protected]',
url='https://github.com/juliomalegria/django-chunked-upload',
download_url=download_url % version,
install_requires=[],
license='MIT-Zero'
)