-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (29 loc) · 905 Bytes
/
setup.py
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
28
29
30
31
32
33
from setuptools import setup
VERSION = '1.1.3'
CLASSIFIERS = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3',
]
LONG_DESC = open('README.rst', 'rt').read() + '\n\n' + open('CHANGES', 'rt').read()
setup(
name='hsaudiotag3k',
version=VERSION,
author='Hardcoded Software',
author_email='[email protected]',
packages=['hsaudiotag'],
scripts=[],
install_requires=[],
url='http://hg.hardcoded.net/hsaudiotag/',
license='BSD License',
description='Read metdata (tags) of mp3, mp4, wma, ogg, flac and aiff files.',
long_description=LONG_DESC,
classifiers=CLASSIFIERS,
command_options={
'build_sphinx': {
'version': ('setup.py', VERSION),
'release': ('setup.py', VERSION),
}
},
)