From b405488940264433c752222296aa391fbb14b886 Mon Sep 17 00:00:00 2001 From: Gael Pasgrimaud Date: Thu, 30 Aug 2012 21:34:31 +0200 Subject: [PATCH] add a setup.py to allow to install with pip install -e --- setup.py | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 000000000..4d3f3f01b --- /dev/null +++ b/setup.py @@ -0,0 +1,24 @@ +#!/usr/bin/env python +from setuptools import setup +from setuptools import find_packages + +version = '1.3.6' + +setup(name='youtube-dl', + version=version, + description="YouTube downloader", + long_description="""\ +**youtube-dl** is a small command-line program to download videos from +YouTube.com and a few more sites. It requires the Python interpreter, version +2.x (x being at least 6), and it is not platform specific. It should work in +your Unix box, in Windows or in Mac OS X. It is released to the public domain, +which means you can modify it, redistribute it or use it however you like. +""", + packages=find_packages(exclude=['test']), + include_package_data=True, + zip_safe=False, + entry_points=""" + [console_scripts] + youtube-dl = youtube_dl:main + """, + )