File: setup-win32.py

package info (click to toggle)
python-cddb 1.4-3
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 208 kB
  • ctags: 103
  • sloc: python: 228; ansic: 202; makefile: 41
file content (21 lines) | stat: -rw-r--r-- 747 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/env python

"""Setup script for the CDDB module distribution under Win32."""

__revision__ = "$Id: setup-win32.py,v 1.1 2001/03/10 22:34:03 che_fox Exp $"

from distutils.core import setup, Extension

setup (# Distribution meta-data
       name = "CDDB",
       version = "1.3",
       description = "Module for retrieving track information about audio CDs from CDDB",
       author = "Ben Gertzfield",
       author_email = "che@debian.org",
       url = "http://csl.cse.ucsc.edu/~ben/python/",

       # Description of the modules and packages in the distribution
       py_modules = ['CDDB', 'DiscID', 'win32/cdrom'],
       ext_modules = [ Extension('mci', ['win32/mci.c']) ],
#       data_files = [('', ['win32/mci.dll'])]
      )