setup.py 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. from setuptools import setup
  2. __author__ = 'notcammy'
  3. __email__ = 'neus2benen@gmail.com'
  4. __version__ = '2.4.9'
  5. _api_version = '1.5.1'
  6. _api_extensions_version = '0.3.7'
  7. long_description = 'This script enables you to download any ongoing Instagram livestreams as well as any available replays. It is based on another script that has now been discontinued.'
  8. setup(
  9. name='pyinstalive',
  10. version=__version__,
  11. author=__author__,
  12. author_email=__email__,
  13. url='https://github.com/notcammy/PyInstaLive',
  14. packages=['pyinstalive'],
  15. entry_points={
  16. 'console_scripts': [
  17. 'pyinstalive = pyinstalive.__main__:run',
  18. ]
  19. },
  20. install_requires=[
  21. 'instagram_private_api>=%(api)s' % {'api': _api_version},
  22. 'instagram_private_api_extensions>=%(ext)s' % {'ext': _api_extensions_version},
  23. 'argparse',
  24. 'configparser'
  25. ],
  26. dependency_links=[
  27. 'https://github.com/ping/instagram_private_api/archive/%(api)s.tar.gz'
  28. '#egg=instagram_private_api-%(api)s' % {'api': _api_version},
  29. 'https://github.com/ping/instagram_private_api_extensions/archive/%(ext)s.tar.gz'
  30. '#egg=instagram_private_api_extensions-%(ext)s' % {'ext': _api_extensions_version}
  31. ],
  32. include_package_data=True,
  33. platforms='any',
  34. long_description=long_description,
  35. keywords='instagram-livestream-recorder record-instagram-livestreams live instagram record livestream video recorder downloader download save',
  36. description='This script enables you to download Instagram livestreams and replays.',
  37. classifiers=[
  38. 'Environment :: Console',
  39. 'Programming Language :: Python :: 2.7',
  40. 'Programming Language :: Python :: 3.5',
  41. 'Programming Language :: Python :: 3.6',
  42. ]
  43. )