jeremyevans / ape_tag_libs

C/Clojure/Erlang/Lua/Python/Ruby Libaries for reading/writing APEv2 tags

ape_tag_libs / python / setup.py
100755 21 lines (18 sloc) 0.788 kb
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
from distutils.core import setup
setup(name="py-ApeTag",
      version="1.2",
      description="A pure Python library for manipulating APEv2 and ID3v1 tags",
      author="Jeremy Evans",
      author_email="code@jeremyevans.net",
      url="http://sourceforge.net/projects/pylibape/",
      classifiers= ['Development Status :: 5 - Production/Stable',
                    'Environment :: Other Environment',
                    'Intended Audience :: Developers',
                    'License :: OSI Approved :: MIT License',
                    'Natural Language :: English',
                    'Operating System :: OS Independent',
                    'Programming Language :: Python',
                    'Topic :: Multimedia'],
      py_modules=["ApeTag"],
)