Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
uWSGI / plugins / emperor_pg / uwsgiplugin.py
Size: Mime:
import os

NAME = 'emperor_pg'

CFLAGS = ['-I' + os.popen('pg_config --includedir').read().rstrip()]
LDFLAGS = []
LIBS = [
    '-L' + os.popen('pg_config --libdir').read().rstrip(),
    '-lpq'
]

GCC_LIST = ['emperor_pg']