forked from coursera-dl/coursera-dl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
54 lines (45 loc) · 1.73 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
50
51
52
53
54
# -*- coding: utf-8 -*-
from setuptools import setup
# you can install this to a local test virtualenv like so:
# virtualenv venv
# ./venv/bin/pip install --editable .
# ./venv/bin/pip install --editable .[dev] # with dev requirements, too
setup(
name='coursera',
version='0.0.3',
maintainer='Rogério Theodoro de Brito',
maintainer_email='[email protected]',
license='LGPL',
url='https://github.com/coursera-dl/coursera',
install_requires=open('requirements.txt').readlines(),
extras_require=dict(
dev=open('requirements-dev.txt').readlines()
),
description='Script for downloading Coursera.org videos and naming them.',
long_description=open('README.rst', 'r').read(),
keywords=['coursera', 'download', 'education', 'MOOCs', 'video'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Programming Language :: Python',
'Topic :: Education',
],
packages=["coursera"],
entry_points=dict(
console_scripts=[
'coursera-dl=coursera.coursera_dl:main'
]
),
platforms=['any'],
)