dbr / tvdb_api

Simple to use TVDB (thetvdb.com) API in Python, and automatic TV episode namer

This URL has Read+Write access

tvdb_api / setup.py
100644 30 lines (26 sloc) 0.841 kb
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
from setuptools import setup, find_packages
setup(
name = 'tvnamer',
version='0.2',
 
author='dbr/Ben',
description='Automatic TV episode namer',
url='http://github.com/dbr/tvdb_api/tree/master',
license='GPLv2',
 
long_description="""\
Automatically names downloaded/recorded TV-episodes, by parsing filenames and retriving shownames from www.thetvdb.com
Includes tvdb_api - an easy to use API interface to TheTVDB.com
""",
 
py_modules = ['tvdb_api'],
scripts = ['tvnamer.py'],
install_requires=['BeautifulSoup'],
 
classifiers=[
    "Environment :: Console",
    "Intended Audience :: End Users/Desktop",
    "License :: OSI Approved :: GNU General Public License (GPL)",
    "Natural Language :: English",
    "Operating System :: OS Independent",
    "Programming Language :: Python",
    "Topic :: Multimedia",
    "Topic :: Utilities"
]
)