mirror of
https://github.com/onyx-and-iris/xair-api-python.git
synced 2024-11-22 12:50:58 +00:00
19 lines
287 B
Python
19 lines
287 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': [
|
||
|
'nose',
|
||
|
'randomize',
|
||
|
'parameterized'
|
||
|
]
|
||
|
}
|
||
|
)
|