vitess-gh/py/setup.py

14 строки
375 B
Python
Исходник Обычный вид История

# Copyright 2012, Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can
# be found in the LICENSE file.
2016-03-16 19:15:57 +03:00
"""This is the setup script for the submodules in the Vitess python client.
"""
2012-06-05 03:22:02 +04:00
from distutils.core import setup
2016-03-16 19:15:57 +03:00
setup(name="vitess",
packages=["vtctl", "vtdb", "vtproto", "vttest"],
platforms="Any",
)