xair-api-python/setup.py
onyx-and-iris 550b8c4240 tests migrated from nose to pytest
fixes #1

config.ini added to gitignore

rewording in readme, links to behringer/midas pages added.

kinds supported updated.

development dependencies updated in setup.py

kind maps in kinds module updated

kwarg port added (might revert this later)

pre-commit.ps1 added for use with git hook

mr18 tests badge added to readme
2022-05-01 03:46:44 +01:00

11 lines
270 B
Python

from setuptools import setup
setup(
name="mair_remote",
version="0.1",
description="MAIR Remote Python API",
packages=["mair"],
install_requires=["python-osc"],
extras_require={"development": ["pytest", "pytest-randomly", "genbadge[tests]"]},
)