* 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>
9 lines
218 B
Python
9 lines
218 B
Python
#from setuptools import setup
|
|
from distutils.core import setup
|
|
from Cython.Build import cythonize
|
|
|
|
setup(
|
|
ext_modules = cythonize("msgcodec.pyx"),
|
|
include_package_data=True,
|
|
package_data={"": ["*.pxd"]},
|
|
)
|