[go: up one dir, main page]

Menu

[r1069]: / gnatlib / src / setup.py  Maximize  Restore  History

Download this file

28 lines (25 with data), 649 Bytes

 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
#!/usr/bin/env python
'''
Created on Apr 20, 2009
@author: kurtjx
'''
import sys
from distutils.core import setup
try:
import mutagen
except:
print 'ERROR: mutagen is not installed - try $ easy_install mutagen'
sys.exit(1)
try:
import musicbrainz2
except:
print 'ERROR: musicbrainz2 is not installed - http://musicbrainz.org/doc/python-musicbrainz2_Download'
sys.exit(1)
setup(name='gnatlib',
version='0.02',
description='A module for looking up musicbrainz URIs',
author='Kurt Jacobson',
author_email='kurtjx at gmail.com',
url='http://omras2.org/gnatlib',
packages=['gnatlib'],
)