glusterfs

Форк
0
32 строки · 904.0 Байт
1
#
2
# Copyright (c) 2011-2014 Red Hat, Inc. <http://www.redhat.com>
3
# This file is part of GlusterFS.
4
#
5
# This file is licensed to you under your choice of the GNU Lesser
6
# General Public License, version 3 or any later version (LGPLv3 or
7
# later), or the GNU General Public License, version 2 (GPLv2), in all
8
# cases as published by the Free Software Foundation.
9
#
10

11
"""
12
This setup.py only used to run tests, since geo-replication will
13
be installed in /usr/local/libexec/glusterfs or /usr/libexec/glusterfs
14
"""
15
from setuptools import setup
16

17
name = 'syncdaemon'
18

19
setup(
20
    name=name,
21
    version="",
22
    description='GlusterFS Geo Replication',
23
    license='GPLV2 and LGPLV3+',
24
    author='Red Hat, Inc.',
25
    author_email='gluster-devel@gluster.org',
26
    url='http://www.gluster.org',
27
    packages=[name, ],
28
    test_suite='nose.collector',
29
    install_requires=[],
30
    scripts=[],
31
    entry_points={},
32
)
33

Использование cookies

Мы используем файлы cookie в соответствии с Политикой конфиденциальности и Политикой использования cookies.

Нажимая кнопку «Принимаю», Вы даете АО «СберТех» согласие на обработку Ваших персональных данных в целях совершенствования нашего веб-сайта и Сервиса GitVerse, а также повышения удобства их использования.

Запретить использование cookies Вы можете самостоятельно в настройках Вашего браузера.