-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
49 lines (42 loc) · 1.54 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
from setuptools import setup
import sys
if not sys.version_info[0] >= 3 and sys.version_info[1] >=5:
sys.exit('Requires Python >= 3.5')
setup(name='aioget',
version='0.2.1',
author='Fernando Giannasi <phoemur@gmail.com>',
url='https://github.com/phoemur/aioget',
download_url = 'https://github.com/phoemur/aioget/tarball/0.2.1',
description="Async io command line download utility written in python",
license="Unlicense",
classifiers=[
'Environment :: Console',
'License :: Public Domain ',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Networking',
'Topic :: Utilities',
],
py_modules=['aioget'],
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
'aiohttp',
'aiofiles',
'blessings',
# -*- Extra requirements: -*-
],
long_description='''This is a simple script that implements concurrent downloads with Python.
It makes use of Python >= 3.5 new module's asyncio coroutines with async / await statements.
Uses aiohttp for assyncronous downloads, aiofiles for nonblocking filesystem operations.
Has a nice curses based progress_bar with multiple lines
''',
entry_points={
'console_scripts': [
'aioget = aioget:main',
],
},
)