forked from dvingerh/PyInstaLive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (34 loc) · 1.09 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
from setuptools import setup
__author__ = 'dvingerh'
__email__ = 'dirk.ving@gmail.com'
__version__ = '4.0.2'
long_description = 'This Python script enables you to download ongoing Instagram livestreams as a video file.'
setup(
name='pyinstalive',
version=__version__,
author=__author__,
author_email=__email__,
url='https://github.com/dvingerh/PyInstaLive',
packages=['pyinstalive'],
entry_points={
'console_scripts': [
'pyinstalive = pyinstalive.__main__:run',
]
},
install_requires=[
'argparse',
'configparser'
],
include_package_data=True,
platforms='any',
long_description=long_description,
keywords='instagram-livestream-recorder record-instagram-livestreams live instagram record livestream video '
'recorder downloader download save',
description='Download Instagram livestreams.',
classifiers=[
'Environment :: Console',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
]
)