mirror of
https://github.com/coursera-dl/coursera-dl.git
synced 2026-01-23 10:45:43 +00:00
54 lines
1.7 KiB
Python
54 lines
1.7 KiB
Python
# -*- 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.0',
|
|
maintainer='Rogério Theodoro de Brito',
|
|
maintainer_email='rbrito@ime.usp.br',
|
|
|
|
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.md', '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'],
|
|
)
|