mirror of
https://github.com/pikvm/ustreamer.git
synced 2026-02-21 09:16:30 +00:00
27 lines
703 B
Python
27 lines
703 B
Python
from distutils.core import Extension
|
|
from distutils.core import setup
|
|
|
|
|
|
# =====
|
|
if __name__ == "__main__":
|
|
setup(
|
|
name="ustreamer",
|
|
version="3.12",
|
|
description="uStreamer tools",
|
|
author="Maxim Devaev",
|
|
author_email="mdevaev@gmail.com",
|
|
url="https://github.com/pikvm/ustreamer",
|
|
ext_modules=[
|
|
Extension(
|
|
"ustreamer",
|
|
libraries=["rt", "m", "pthread"],
|
|
undef_macros=["NDEBUG"],
|
|
sources=["ustreamer.c"],
|
|
depends=[
|
|
"../src/libs/tools.h",
|
|
"../src/libs/memsinksh.h",
|
|
],
|
|
),
|
|
],
|
|
)
|