mirror of
https://github.com/instaloader/instaloader.git
synced 2024-11-04 09:22:29 +01:00
39 lines
1.3 KiB
Python
Executable File
39 lines
1.3 KiB
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
import sys
|
|
from setuptools import setup
|
|
|
|
if sys.version_info < (3, 5):
|
|
sys.exit('Instaloader requires Python >= 3.5.')
|
|
|
|
setup(
|
|
name='instaloader',
|
|
version='1.2.2',
|
|
py_modules=['instaloader'],
|
|
url='https://github.com/Thammus/instaloader',
|
|
license='MIT',
|
|
author='Alexander Graf, André Koch-Kramer',
|
|
author_email='mail@agraf.me, koch-kramer@web.de',
|
|
description='Tool to download Instagram pictures (or videos) and captions from a given set of '
|
|
'profiles (even if private), from your feed or from all followees of a given '
|
|
'profile.',
|
|
long_description=open('README.rst').read(),
|
|
install_requires=['requests>=2.4'],
|
|
python_requires='>=3.5',
|
|
entry_points={'console_scripts': ['instaloader=instaloader:main']},
|
|
zip_safe=True,
|
|
keywords='instagram downloader',
|
|
classifiers=[
|
|
'Development Status :: 5 - Production/Stable',
|
|
'Environment :: Console',
|
|
'Intended Audience :: End Users/Desktop',
|
|
'License :: OSI Approved :: MIT License',
|
|
'Operating System :: OS Independent',
|
|
'Programming Language :: Python :: 3.5',
|
|
'Programming Language :: Python :: 3.6',
|
|
'Programming Language :: Python :: 3 :: Only',
|
|
'Topic :: Internet',
|
|
'Topic :: Multimedia :: Graphics'
|
|
]
|
|
)
|