forked from wishmerhill/ua100mix
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__init__.py
More file actions
25 lines (20 loc) · 757 Bytes
/
__init__.py
File metadata and controls
25 lines (20 loc) · 757 Bytes
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
#!/usr/bin/python ~devel/ua100mix/__init__.py
"""
ua100mix is just a try for creating a tool to control the Roland/Edirol UA-100,
an USB Audio & MIDI processing Unit.
"""
# define authorship information
__authors__ = ['Alberto "wishmehill" Azzalini']
__author__ = ','.join(__authors__)
__credits__ = []
__copyright__ = 'Copyright (c) 2014'
__license__ = 'GPL'
# maintanence information
__maintainer__ = 'Alberto Azzalini'
__email__ = 'alberto.azzalini@gmail.com'
# define version information
__requires__ = ['PyQt4','pyPortMidi']
__version_info__ = (0, 0, 1)
__version__ = 'v%i.%02i.%02i' % __version_info__
__revision__ = __version__
# this project will be managed by PyCharm and hosted on github.com