mirror of
https://github.com/onyx-and-iris/xair-api-python.git
synced 2026-01-02 16:17:46 +00:00
11 lines
272 B
Python
11 lines
272 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name="mair_remote",
|
|
version="0.1.0",
|
|
description="MAIR Remote Python API",
|
|
packages=["mair"],
|
|
install_requires=["python-osc"],
|
|
extras_require={"development": ["pytest", "pytest-randomly", "genbadge[tests]"]},
|
|
)
|