openreplay/ee/connectors/msgcodec/setup-messages.py
Rajesh Rajendran 53081a9822
Improvements (#1387)
* fix for memory cleansing and added setup files for msgcodec build

* Kafka reader now calling only once to PG to verify sessionIds, updated fill missing user_ids script

* fix(connector): small error while reading from pg

---------

Co-authored-by: MauricioGarciaS <47052044+MauricioGarciaS@users.noreply.github.com>
2023-06-30 12:04:23 +02:00

9 lines
218 B
Python

#from setuptools import setup
from distutils.core import setup
from Cython.Build import cythonize
setup(
ext_modules = cythonize("messages.pyx"),
include_package_data=True,
package_data={"": ["*.pxd"]},
)