-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathsetup.py
44 lines (41 loc) · 1.11 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
from setuptools import setup
from os import path
curr_directory = path.abspath(path.dirname(__file__))
with open(path.join(curr_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(name='edx-downloader',
version='1.0.3',
description='CLI downloader for EDX video courses. Download all course videos from https://edx.org easily.',
author='Rehmat Alam',
author_email='[email protected]',
url='https://github.com/rehmatworks/edx-downloader',
long_description=long_description,
long_description_content_type='text/markdown',
license='MIT',
entry_points={
'console_scripts': [
'edxdl = edxdownloader.utils:main'
],
},
packages=[
'edxdownloader'
],
install_requires=[
'beautifulsoup4>=4.9',
'bs4>=0.0',
'certifi>=2020.12',
'chardet>=4.0.0',
'colorful>=0.5.4',
'decorator>=4.4',
'fake-useragent>=0.1',
'idna>=2.10',
'lxml>=4.6',
'requests>=2.25',
'six>=1.15',
'soupsieve>=2.2',
'tqdm>=4.57.0',
'urllib3>=1.26',
'validators>=0.18',
'python-slugify>=4.0'
]
)