mirror of
https://github.com/twitter/the-algorithm.git
synced 2024-11-14 07:35:10 +01:00
13 lines
244 B
Python
13 lines
244 B
Python
"""
|
|
libtwml setup.py module
|
|
"""
|
|
from setuptools import find_packages, setup
|
|
|
|
setup(
|
|
name="libtwml",
|
|
version="2.0",
|
|
description="Tensorflow C++ ops for twml",
|
|
packages=find_packages(),
|
|
data_files=[("", ["libtwml_tf.so"])],
|
|
)
|