forked from Hiromi-nee/instagram-scraper
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
32 lines (29 loc) · 1.02 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
import sys
from setuptools import setup, find_packages
requires = [
'requests>=2.18.4',
'tqdm>=3.8.0',
'moviepy>=1.0.0'
]
if sys.version_info < (3, 2):
requires.append('futures==2.2')
requires.append('configparser')
setup(
name='instagram-scraper',
version='1.8.1',
description=("instagram-scraper is a command-line application written in Python"
" that scrapes and downloads an instagram user\'s photos and videos. Use responsibly."),
url='https://github.com/rarcega/instagram-scraper',
download_url='https://github.com/rarcega/instagram-scraper/tarball/1.8.1',
author='Richard Arcega',
author_email='hello@richardarcega.com',
license='Public domain',
packages=find_packages(exclude=['tests']),
install_requires=requires,
entry_points={
'console_scripts': ['instagram-scraper=instagram_scraper.app:main'],
},
test_suite='nose.collector',
zip_safe=False,
keywords=['instagram', 'scraper', 'download', 'media', 'photos', 'videos']
)