1 from setuptools
import setup
5 wd = os.path.dirname(os.path.abspath(__file__))
10 pkg = __import__(name)
11 author, email = pkg.__author__.rsplit(
' ', 1)
13 with open(os.path.join(wd,
'README.rst'),
'r') as readme: 14 long_description = readme.read() 16 url = 'http://projects.monkeython.com/musixmatch',
19 'version': pkg.__version__,
21 'author_email': email.strip(
'<>'),
23 'description':
"Package to interface with the Musixmatch API",
24 'long_description': long_description,
25 'download_url':
'%s/dists' % url,
26 'classifiers': pkg.__classifiers__,
28 'include_package_data':
True,
29 'exclude_package_data': {name: [
"*.rst",
"docs",
"tests"]},
30 'test_suite':
'tests.suite'}
32 if __name__ ==
'__main__':