Update to setuptools usage
This commit is contained in:
parent
b06fd67fc2
commit
fc5cd7fdbd
45
setup.py
45
setup.py
@ -1,18 +1,31 @@
|
|||||||
from distutils.core import setup
|
import os
|
||||||
|
from setuptools import setup
|
||||||
|
|
||||||
setup(name='MIDIUtil',
|
# allow setup.py to be run from any path
|
||||||
version='0.87',
|
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
|
||||||
description='MIDIUtil, a MIDI Interface for Python',
|
|
||||||
author='Mark Conway Wirt',
|
setup(
|
||||||
author_email='emergentmusics) at (gmail . com',
|
name='MIDIUtil',
|
||||||
license='Copyright (C) 2009, Mark Conway Wirt. See License.txt for details.',
|
version='0.87',
|
||||||
url='http://www.emergentmusics.org/midiutil/',
|
description='MIDIUtil, a MIDI Interface for Python',
|
||||||
packages=["midiutil"],
|
author='Mark Conway Wirt',
|
||||||
package_dir = {'midiutil': 'src/midiutil'},
|
author_email='emergentmusics) at (gmail . com',
|
||||||
package_data={'midiutil' : ['../../documentation/*']},
|
url='http://www.emergentmusics.org/midiutil/',
|
||||||
scripts=['examples/single-note-example.py'],
|
license='Copyright (C) 2009, Mark Conway Wirt. See License.txt for details.',
|
||||||
platforms='Platform Independent',
|
packages=['midiutil'],
|
||||||
long_description='''
|
package_dir = {'midiutil': 'src/midiutil'},
|
||||||
|
package_data={'midiutil' : ['../../documentation/*']},
|
||||||
|
scripts=['examples/single-note-example.py'],
|
||||||
|
long_description='''
|
||||||
This package provides a simple interface to allow Python programs to
|
This package provides a simple interface to allow Python programs to
|
||||||
write multi-track MIDI files.'''
|
write multi-track MIDI files.''',
|
||||||
)
|
classifiers=[
|
||||||
|
'Intended Audience :: Developers',
|
||||||
|
'Operating System :: OS Independent',
|
||||||
|
'Programming Language :: Python',
|
||||||
|
'Programming Language :: Python :: 2',
|
||||||
|
'Programming Language :: Python :: 2.7',
|
||||||
|
'Programming Language :: Python :: 3',
|
||||||
|
'Programming Language :: Python :: 3.4',
|
||||||
|
]
|
||||||
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user