1
0
mirror of https://github.com/instaloader/instaloader.git synced 2024-07-04 19:05:55 +02:00
instaloader/setup.py

71 lines
2.3 KiB
Python
Raw Normal View History

#!/usr/bin/env python3
import re
import sys
import os
from setuptools import setup
SRC = os.path.abspath(os.path.dirname(__file__))
def get_version():
2018-04-05 13:03:46 +02:00
with open(os.path.join(SRC, 'instaloader/__init__.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, 8):
sys.exit('Instaloader requires Python >= 3.8.')
requirements = ['requests>=2.4']
2023-11-15 07:32:18 +01:00
optional_requirements = {
'browser_cookie3': ['browser_cookie3>=0.19.1'],
}
keywords = (['instagram', 'instagram-scraper', 'instagram-client', 'instagram-feed', 'downloader', 'videos', 'photos',
'pictures', 'instagram-user-photos', 'instagram-photos', 'instagram-metadata', 'instagram-downloader',
'instagram-stories'])
2017-08-26 12:42:04 +02:00
# 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(),
2018-04-05 13:03:46 +02:00
packages=['instaloader'],
2020-11-19 10:32:46 +01:00
package_data={'instaloader': ['py.typed']},
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.8',
2023-11-15 07:32:18 +01:00
extras_require=optional_requirements,
2018-04-05 13:03:46 +02:00
entry_points={'console_scripts': ['instaloader=instaloader.__main__:main']},
2020-11-19 10:32:46 +01:00
zip_safe=False,
keywords=keywords,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
2016-09-19 19:26:59 +02:00
'Intended Audience :: End Users/Desktop',
2018-04-28 21:45:57 +02:00
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
2019-05-27 18:08:17 +02:00
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
2023-10-09 08:21:36 +02:00
'Programming Language :: Python :: 3.12',
2016-09-19 19:26:59 +02:00
'Programming Language :: Python :: 3 :: Only',
'Topic :: Internet',
'Topic :: Multimedia :: Graphics'
]
)