-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
41 lines (34 loc) · 1014 Bytes
/
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
"""Setup tools for comicnamer
Modified from http://github.com/dbr/tvnamer
"""
from setuptools import setup
setup(
name = 'comicnamer',
url='http://github.com/swc/comicnamer',
version='1.0',
author='swc/Steve',
author_email='[email protected]',
description='Automatic TV episode file renamer, uses data from thetvdb.com via tvdb_api',
license='GPLv2',
long_description="""\
Automatically names downloaded comic issues, by parsing filenames and
retrieving issue names from www.comicvine.com
""",
packages = ['comicnamer'],
entry_points = {
'console_scripts': [
'comicnamer = comicnamer.main:main',
],
},
install_requires = ['comicvine_api>=1.04', '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",
],
)