forked from cmcginty/mktoc
-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
executable file
·50 lines (45 loc) · 1.48 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#!/usr/bin/env python
# Copyright (c) 2011, Patrick C. McGinty
#
# This program is free software: you can redistribute it and/or modify it
# under the terms of the Simplified BSD License.
#
# See LICENSE text for more details.
"""
Distools setup file for the mktoc application.
"""
import os
from setuptools import setup
from textwrap import dedent
import mktoc
from mktoc.base import *
setup(
name='mktoc',
version=VERSION,
description= 'Simple command line tool generates TOC files '
'for audio CD burning with cdrdao.',
long_description=dedent(mktoc.__doc__),
author=__author__,
author_email=__email__,
url='http://packages.python.org/mktoc/',
download_url=(
'https://github.com/cmcginty/mktoc/raw/master/dist/mktoc-%s.tar.gz'
% (VERSION,)),
packages=['mktoc'],
entry_points = {
'console_scripts': ['mktoc = mktoc.cmdline:main',],
},
keywords = 'cdrdao cue toc cd-writing audio-cd mktoc mkcue cue2toc '
'eac exactaudiocopy pregap',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: OS Independent',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Topic :: Multimedia :: Sound/Audio :: CD Audio :: CD Writing',
'Topic :: Multimedia :: Sound/Audio :: Conversion',
]
)