File: setup.py

package info (click to toggle)
python-tvrage 0.4.1-1~bpo70%2B1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy-backports
  • size: 132 kB
  • sloc: python: 414; makefile: 2
file content (29 lines) | stat: -rw-r--r-- 974 bytes parent folder | download | duplicates (2)
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
#!/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'
      ]
     )