-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (26 loc) · 721 Bytes
/
setup.py
File metadata and controls
31 lines (26 loc) · 721 Bytes
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
from setuptools import setup
install_requires = [
'bandcamp-downloader==0.0.10',
'beautifulsoup4==4.10.0',
'Pafy==0.3.66',
'fudge==1.0.3',
'requests>=2.20.0',
'simplejson==3.6.5',
'slimit==0.8.1',
'stagger',
]
dependency_links = [
'git://github.com/ajduncan/stagger.git@master#egg=stagger',
]
setup(name='downspout',
version='v0.0.6',
description='Capture cloud based media for offline merriment.',
license='MIT',
author='Andy Duncan',
author_email='ajduncan@gmail.com',
url='https://github.com/ajduncan/downspout/',
install_requires=install_requires,
dependency_links=dependency_links,
test_suite='tests.runtests'
)