mirror of
https://github.com/instaloader/instaloader.git
synced 2024-11-04 17:32:30 +01:00
66 lines
2.1 KiB
Python
Executable File
66 lines
2.1 KiB
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
import re
|
|
import sys
|
|
import os
|
|
import platform
|
|
from setuptools import setup
|
|
|
|
|
|
SRC = os.path.abspath(os.path.dirname(__file__))
|
|
|
|
|
|
def get_version():
|
|
with open(os.path.join(SRC, 'instaloader.py')) as f:
|
|
for line in f:
|
|
m = re.match("__version__ = '(.*)'", line)
|
|
if m:
|
|
return m.group(1)
|
|
raise SystemExit("Could not find version string.")
|
|
|
|
|
|
if sys.version_info < (3, 5):
|
|
sys.exit('Instaloader requires Python >= 3.5.')
|
|
|
|
requirements = ['requests>=2.4']
|
|
|
|
if platform.system() == 'Windows' and sys.version_info < (3, 6):
|
|
requirements.append('win_unicode_console')
|
|
|
|
keywords = (['instagram', 'instagram-scraper', 'instagram-client', 'instagram-feed', 'downloader', 'videos', 'photos',
|
|
'pictures', 'instagram-user-photos', 'instagram-photos', 'instagram-metadata', 'instagram-downloader',
|
|
'instagram-stories'])
|
|
|
|
# NOTE that many of the values defined in this file are duplicated on other places, such as the
|
|
# documentation.
|
|
|
|
setup(
|
|
name='instaloader',
|
|
version=get_version(),
|
|
py_modules=['instaloader'],
|
|
url='https://instaloader.github.io/',
|
|
license='MIT',
|
|
author='Alexander Graf, André Koch-Kramer',
|
|
author_email='mail@agraf.me, koch-kramer@web.de',
|
|
description='Download pictures (or videos) along with their captions and other metadata '
|
|
'from Instagram.',
|
|
long_description=open(os.path.join(SRC, 'README.rst')).read(),
|
|
install_requires=requirements,
|
|
python_requires='>=3.5',
|
|
entry_points={'console_scripts': ['instaloader=instaloader:main']},
|
|
zip_safe=True,
|
|
keywords=keywords,
|
|
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'
|
|
]
|
|
)
|