File tree Expand file tree Collapse file tree 2 files changed +17
-2
lines changed Expand file tree Collapse file tree 2 files changed +17
-2
lines changed Original file line number Diff line number Diff line change 1
1
licenses (["notice" ]) # Apache 2.0
2
2
3
+ exports_files (["LICENSE" ])
4
+
3
5
py_library (
4
6
name = "tensorflow_compression" ,
5
7
srcs = [
6
8
"tensorflow_compression/__init__.py" ,
7
9
"tensorflow_compression/python/__init__.py" ,
8
10
],
11
+ visibility = ["//visibility:public" ],
9
12
deps = [
10
13
"//tensorflow_compression/python/layers" ,
11
14
"//tensorflow_compression/python/ops" ,
12
15
],
13
- visibility = ["//visibility:public" ],
14
16
)
15
17
16
18
filegroup (
@@ -35,3 +37,17 @@ sh_binary(
35
37
"//tensorflow_compression/python/ops:py_src" ,
36
38
],
37
39
)
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
+ )
Original file line number Diff line number Diff line change @@ -38,7 +38,6 @@ def has_ext_modules(self):
38
38
description = ('Data compression in TensorFlow' ),
39
39
url = 'https://tensorflow.github.io/compression/' ,
40
40
author = 'Google LLC' ,
41
-
42
41
# Contained modules and scripts.
43
42
packages = find_packages (),
44
43
install_requires = [
You can’t perform that action at this time.
0 commit comments