forked from C0D3D3V/bbb-dl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
49 lines (44 loc) · 1.45 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
39
40
41
42
43
44
45
46
47
48
49
from os import path
from setuptools import setup, find_packages
# Get the version from bbb_dl/version.py without importing the package
exec(compile(open('bbb_dl/version.py').read(), 'bbb_dl/version.py', 'exec'))
def readme():
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
return f.read()
setup(
name='bbb-dl',
version=__version__,
description='Big Blue Button Downloader that downloads a BBB lesson as MP4 video',
long_description=readme(),
long_description_content_type='text/markdown',
url='https://github.com/C0D3D3V/bbb-dl',
author='C0D3D3V',
license='GPL-2.0',
packages=find_packages(),
include_package_data=True,
entry_points={
'console_scripts': [
'bbb-dl = bbb_dl.main:main',
],
},
python_requires='>=3.6',
install_requires=[
'cairosvg',
'youtube_dl',
'Pillow',
'pathvalidate'
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Education',
'Topic :: Internet :: WWW/HTTP :: Indexing/Search',
'Topic :: Multimedia :: Video',
'Topic :: Multimedia :: Sound/Audio',
'Topic :: Utilities',
],
zip_safe=False,
)