mirror of
https://github.com/instaloader/instaloader.git
synced 2024-11-04 09:22:29 +01:00
dcc48e37df
Now, setup.py does not assume to be called from the path where the source tree resides. This fixes getting the long_description and the version if setup.py is called from outside.
53 lines
1.6 KiB
Python
Executable File
53 lines
1.6 KiB
Python
Executable File
#!/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():
|
|
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.')
|
|
|
|
setup(
|
|
name='instaloader',
|
|
version=get_version(),
|
|
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='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=['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'
|
|
]
|
|
)
|