2
0
mirror of https://github.com/twitter/the-algorithm.git synced 2025-01-11 03:39:11 +01:00

13 lines
234 B
Python
Raw Normal View History

"""
libtwml setup.py module
"""
from setuptools import setup, find_packages
setup(
name='libtwml',
version='2.0',
description="Tensorflow C++ ops for twml",
packages=find_packages(),
data_files=[('', ['libtwml_tf.so'])],
)