-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·72 lines (58 loc) · 1.73 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
#!/usr/bin/env python
import os
import sys
here = os.path.abspath(os.path.dirname(__file__))
def get_about():
about = {}
path = os.path.join(here, 'mido', '__about__.py')
with open(path, 'rt') as aboutfile:
exec(aboutfile.read(), about)
return about
about = get_about()
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
if sys.argv[-1] == "publish":
os.system("python setup.py sdist upload")
sys.exit()
elif sys.argv[-1] == "docs":
os.system("sphinx-build docs docs/_build")
sys.exit()
setup(
name='mido',
version=about['__version__'],
description='MIDI Objects for Python',
long_description=open('README.rst', 'rt').read(),
author=about['__author__'],
author_email=about['__author_email__'],
url=about['__url__'],
license=about['__license__'],
package_data={'': ['LICENSE']},
package_dir={'mido': 'mido'},
packages=['mido', 'mido.backends'],
scripts=['bin/mido-play',
'bin/mido-ports',
'bin/mido-serve',
'bin/mido-connect'],
include_package_data=True,
install_requires=[],
extras_require={
'dev': ['check-manifest>=0.35',
'flake8>=3.4.1',
'pytest>=3.2.2',
'sphinx>=1.6.3',
],
'ports': ['python-rtmidi>=1.1.0']
},
zip_safe=False,
classifiers=(
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6',
),
)