Navigation Menu

Skip to content

Commit

Permalink
The first commit was 387 days ago (May 5, 2008), and there has been ~…
Browse files Browse the repository at this point in the history
…330 commits. Now, v1.0 \o/
  • Loading branch information
dbr committed May 27, 2009
1 parent 20842f9 commit 0758449
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion cache.py
Expand Up @@ -12,7 +12,7 @@
""" """


__author__ = "dbr/Ben" __author__ = "dbr/Ben"
__version__ = "0.7" __version__ = "1.0"


import os import os
import time import time
Expand Down
2 changes: 1 addition & 1 deletion setup_tvdb_api.py
@@ -1,7 +1,7 @@
from setuptools import setup from setuptools import setup
setup( setup(
name = 'tvdb_api', name = 'tvdb_api',
version='0.7', version='1.0',


author='dbr/Ben', author='dbr/Ben',
description='Interface to thetvdb.com', description='Interface to thetvdb.com',
Expand Down
4 changes: 2 additions & 2 deletions setup_tvnamer.py
@@ -1,7 +1,7 @@
from setuptools import setup from setuptools import setup
setup( setup(
name = 'tvnamer', name = 'tvnamer',
version='0.7', version='1.0',


author='dbr/Ben', author='dbr/Ben',
description='Automatic TV episode namer', description='Automatic TV episode namer',
Expand All @@ -20,7 +20,7 @@
] ]
}, },


install_requires = ['tvdb_api==0.7'], install_requires = ['tvdb_api==1.0'],


classifiers=[ classifiers=[
"Environment :: Console", "Environment :: Console",
Expand Down
2 changes: 1 addition & 1 deletion tvdb_api.py
Expand Up @@ -16,7 +16,7 @@
u'Cabin Fever' u'Cabin Fever'
""" """
__author__ = "dbr/Ben" __author__ = "dbr/Ben"
__version__ = "0.7" __version__ = "1.0"


import os import os
import sys import sys
Expand Down
2 changes: 1 addition & 1 deletion tvdb_exceptions.py
Expand Up @@ -10,7 +10,7 @@
""" """


__author__ = "dbr/Ben" __author__ = "dbr/Ben"
__version__ = "0.7" __version__ = "1.0"


__all__ = ["tvdb_error", "tvdb_userabort", "tvdb_shownotfound", __all__ = ["tvdb_error", "tvdb_userabort", "tvdb_shownotfound",
"tvdb_seasonnotfound", "tvdb_episodenotfound", "tvdb_attributenotfound"] "tvdb_seasonnotfound", "tvdb_episodenotfound", "tvdb_attributenotfound"]
Expand Down
2 changes: 1 addition & 1 deletion tvdb_ui.py
Expand Up @@ -44,7 +44,7 @@
""" """


__author__ = "dbr/Ben" __author__ = "dbr/Ben"
__version__ = "0.7" __version__ = "1.0"


from tvdb_exceptions import tvdb_userabort from tvdb_exceptions import tvdb_userabort


Expand Down
2 changes: 1 addition & 1 deletion tvnamer.py
Expand Up @@ -13,7 +13,7 @@
""" """


__author__ = "dbr/Ben" __author__ = "dbr/Ben"
__version__ = "0.7" __version__ = "1.0"


import os, sys, re import os, sys, re
from optparse import OptionParser from optparse import OptionParser
Expand Down

1 comment on commit 0758449

@JakeWharton
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Congrats! Extremely useful class set.

Please sign in to comment.