forked from berdario/resumable-urlretrieve
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (23 loc) · 736 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
#! /usr/bin/env python
import sys
from setuptools import setup # type: ignore
requires = ['requests']
if sys.version_info < (3, 5):
requires.append('typing')
setup(
name='resumable-urlretrieve',
version='0.1.5',
description='Small library to fetch files over HTTP and resuming their download',
author='Dario Bertini',
author_email='berdario+pypi@gmail.com',
url='https://github.com/berdario/resumable-urlretrieve',
license='MIT License',
packages=['resumable'],
install_requires=requires,
include_package_data=True,
zip_safe=False,
classifiers=[
'Programming Language :: Python :: 3',
'Intended Audience :: Developers',
'Topic :: Internet :: WWW/HTTP']
)