forked from mujin/mujinvisioncontrollerclientpy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 798 Bytes
/
setup.py
File metadata and controls
27 lines (25 loc) · 798 Bytes
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
27
# -*- coding: utf-8 -*-
# Copyright (C) 2012-2015 MUJIN Inc
from distutils.core import setup
try:
from mujincommon.setuptools import Distribution
except (ImportError, SyntaxError):
from distutils.dist import Distribution
version = {}
exec(open('mujinvisioncontrollerclient/version.py').read(), version)
setup(
distclass=Distribution,
name='mujinvisioncontrollerclient',
version=version['__version__'],
packages=['mujinvisioncontrollerclient'],
license='Apache License, Version 2.0',
long_description=open('README.rst').read(),
# flake8 compliance configuration
enable_flake8=True, # Enable checks
fail_on_flake=True, # Fail builds when checks fail
install_requires=[
'six',
'pyzmq',
'mujinplanningclient>=0.1.4',
],
)