forked from dbr/tvnamer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
43 lines (35 loc) · 1.02 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
"""Setup tools for tvnamer,
"""
from setuptools import setup
setup(
name = 'tvnamer',
version='2.1',
author='dbr/Ben',
description='Automatic TV episode namer',
url='http://github.com/dbr/tvnamer',
license='GPLv2',
long_description="""\
Automatically names downloaded/recorded TV-episodes, by parsing filenames and
retrieving show-names from www.thetvdb.com
Now deals with files containing multiple: show.name.s01e01e02.avi, anime
files: [SomeGroup] Show Name - 102 [A1B2C3].mkv and better handles files
containing unicode characters.
""",
packages = ['tvnamer'],
entry_points = {
'console_scripts': [
'tvnamer = tvnamer.main:main',
],
},
install_requires = ['tvdb_api>=1.5', 'simplejson'],
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",
],
)