xair-api-python/setup.py

11 lines
270 B
Python
Raw Normal View History

2022-04-05 20:05:55 +01:00
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]"]},
2022-04-05 20:05:55 +01:00
)