forked from Hiromi-nee/instagram-scraper
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
20 lines (19 loc) · 829 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup, find_packages
setup(name='instagram-scraper',
version='0.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',
author='Richard Arcega',
license='Public domain',
packages=find_packages(exclude=['tests*']),
install_requires=["requests>=1.0.4",
"futures==2.2.0",
"tqdm>=3.8.0",
"requests_mock",
"nose"],
entry_points = {
'console_scripts': ['instagram-scraper=instagram_scraper.app:main'],
},
test_suite = 'nose.collector',
zip_safe=False)