mirror of
https://github.com/spaam/svtplay-dl.git
synced 2024-11-24 12:15:40 +01:00
20 lines
569 B
Python
20 lines
569 B
Python
|
#!/usr/bin/env python
|
||
|
from setuptools import setup, find_packages
|
||
|
import sys
|
||
|
|
||
|
setup(
|
||
|
name = "svtplay-dl",
|
||
|
version = "0.9.2013.03.06", # FIXME - extract from svtplay-dl
|
||
|
packages = find_packages(
|
||
|
'lib',
|
||
|
exclude=["tests", "*.tests", "*.tests.*"]),
|
||
|
package_dir = {'': 'lib'},
|
||
|
scripts = ['svtplay-dl'],
|
||
|
|
||
|
author = "Johan Andersson",
|
||
|
author_email = "j@i19.se",
|
||
|
description = "Command-line program to download videos from various video on demand sites",
|
||
|
license = "MIT",
|
||
|
url = "https://github.com/spaam/svtplay-dl",
|
||
|
)
|