/
githubmirror
/
libteam
Обзор
Документация
Войти
/
githubmirror
/
libteam
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v1.5
binding/python/setup.py.in
21 строка
608 B
Jiri Pirko
python: fix path to libteam
16 май 2013, 11:53
16 май 2013, 11:53
781d50b
Код
Авторство
О чём код?
# -*- coding: utf-8 -*- #!/usr/bin/env python from distutils.core import setup, Extension team = Extension('team/_capi', sources = ['team/capi.i'], include_dirs = ['../../include'], library_dirs = ['../../libteam/.libs'], swig_opts = ['-O', '-nodefaultctor'], libraries = ['team'], ) setup(name = 'team', version = '1.0', description = 'Python wrapper for teaming lib.', author = 'Jiří Župka', author_email = 'jzupka@redhat.com', ext_modules = [team], packages = ['team'] )