forked from rsc-dev/pyamaha
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (26 loc) · 871 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
from setuptools import setup
setup(
name = 'pyamaha',
packages = ['pyamaha'],
version = '0.3',
description = 'Python implementation of Yamaha Extended Control API Specification.',
author = 'Radoslaw Matusiak',
author_email = '[email protected]',
url = 'https://github.com/rsc-dev/pyamaha',
download_url = 'https://github.com/rsc-dev/pyamaha/releases/tag/0.3',
keywords = ['Yamaha', 'API', 'Yamaha Extended Control'],
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Console',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules'
],
install_requires=[
'requests',
],
setup_requires=["pytest-runner"],
tests_require=["pytest"],
)