mirror of
https://github.com/moparisthebest/SickRage
synced 2024-11-06 01:15:05 -05:00
30 lines
974 B
Python
30 lines
974 B
Python
|
#!/usr/bin/env python
|
||
|
|
||
|
import os
|
||
|
|
||
|
from distutils.core import setup
|
||
|
from tvrage import __version__, __author__, __license__
|
||
|
|
||
|
setup(name='python-tvrage',
|
||
|
description='python client for the tvrage.com XML API',
|
||
|
long_description = file(
|
||
|
os.path.join(os.path.dirname(__file__),'README.rst')).read(),
|
||
|
license=__license__,
|
||
|
version=__version__,
|
||
|
author=__author__,
|
||
|
author_email='herr.kreutzer@gmail.com',
|
||
|
# url='http://bitbucket.org/ckreutzer/python-tvrage/',
|
||
|
url='https://github.com/ckreutzer/python-tvrage',
|
||
|
packages=['tvrage'],
|
||
|
install_requires = ["BeautifulSoup"],
|
||
|
classifiers = [
|
||
|
'Development Status :: 4 - Beta',
|
||
|
'Intended Audience :: Developers',
|
||
|
'License :: OSI Approved :: BSD License',
|
||
|
'Topic :: Software Development :: Libraries :: Python Modules',
|
||
|
'Programming Language :: Python',
|
||
|
'Operating System :: OS Independent'
|
||
|
]
|
||
|
)
|
||
|
|