File: conf.py

package info (click to toggle)
nutcracker 0.4.1%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster, stretch
  • size: 1,388 kB
  • ctags: 1,493
  • sloc: ansic: 14,328; python: 1,147; sh: 854; makefile: 105
file content (15 lines) | stat: -rw-r--r-- 435 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#coding: utf-8

import os
import sys

PWD = os.path.dirname(os.path.realpath(__file__))
WORKDIR = os.path.join(PWD,  '../')

BINARYS = {
    'REDIS_SERVER_BINS'   : os.path.join(WORKDIR, '_binaries/redis-*'),
    'REDIS_CLI'           : os.path.join(WORKDIR, '_binaries/redis-cli'),
    'MEMCACHED_BINS'      : os.path.join(WORKDIR, '_binaries/memcached'),
    'NUTCRACKER_BINS'     : os.path.join(WORKDIR, '_binaries/nutcracker'),
}