Skip to content

Commit 5241efd

Browse files
GooglerSung Jin Hwang
authored andcommitted
Project import generated by Copybara.
PiperOrigin-RevId: 247711355 Change-Id: I4c19cd4a2b3bde5302a6a7f51a955762638eb339
1 parent f250f0a commit 5241efd

File tree

2 files changed

+17
-2
lines changed

2 files changed

+17
-2
lines changed

BUILD

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,18 @@
11
licenses(["notice"]) # Apache 2.0
22

3+
exports_files(["LICENSE"])
4+
35
py_library(
46
name = "tensorflow_compression",
57
srcs = [
68
"tensorflow_compression/__init__.py",
79
"tensorflow_compression/python/__init__.py",
810
],
11+
visibility = ["//visibility:public"],
912
deps = [
1013
"//tensorflow_compression/python/layers",
1114
"//tensorflow_compression/python/ops",
1215
],
13-
visibility = ["//visibility:public"],
1416
)
1517

1618
filegroup(
@@ -35,3 +37,17 @@ sh_binary(
3537
"//tensorflow_compression/python/ops:py_src",
3638
],
3739
)
40+
41+
py_binary(
42+
name = "tfci",
43+
srcs = ["examples/tfci.py"],
44+
python_version = "PY2",
45+
deps = [":tensorflow_compression"],
46+
)
47+
48+
py_binary(
49+
name = "generate_docs",
50+
srcs = ["tools/generate_docs.py"],
51+
python_version = "PY2",
52+
deps = [":tensorflow_compression"],
53+
)

setup.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ def has_ext_modules(self):
3838
description=('Data compression in TensorFlow'),
3939
url='https://tensorflow.github.io/compression/',
4040
author='Google LLC',
41-
author_email='[email protected]',
4241
# Contained modules and scripts.
4342
packages=find_packages(),
4443
install_requires=[

0 commit comments

Comments
 (0)