1#!/usr/bin/env python
2from distutils.core import setup
3setup(name="py-ApeTag",
4      version="1.2",
5      description="A pure Python library for manipulating APEv2 and ID3v1 tags",
6      author="Jeremy Evans",
7      author_email="code@jeremyevans.net",
8      url="http://sourceforge.net/projects/pylibape/",
9      classifiers= ['Development Status :: 5 - Production/Stable',
10                    'Environment :: Other Environment',
11                    'Intended Audience :: Developers',
12                    'License :: OSI Approved :: MIT License',
13                    'Natural Language :: English',
14                    'Operating System :: OS Independent',
15                    'Programming Language :: Python',
16                    'Topic :: Multimedia'],
17      py_modules=["ApeTag"],
18)
19
20
21