Skip to content
This repository was archived by the owner on Jul 31, 2023. It is now read-only.

Commit f989f23

Browse files
authored
Merge pull request #17 from google/pr/15
Add check.py to __init__.py
2 parents f03063c + 25daf04 commit f989f23

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

setup.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@
1414
# See the License for the specific language governing permissions and
1515
# limitations under the License.
1616

17+
"""Package setup."""
18+
1719
from setuptools import find_packages
1820
from setuptools import setup
1921

@@ -25,6 +27,7 @@
2527
"coverage >= 5.1",
2628
"ipython >= 7.15.0",
2729
"fire >= 0.3.1",
30+
"frozendict >= 1.2",
2831
"nose >= 1.3.7",
2932
"pandas >= 1.0.4",
3033
"Pillow >= 7.1.2",
@@ -44,7 +47,7 @@
4447
packages=find_packages(),
4548
include_package_data=True,
4649
description='TFRecorder creates TensorFlow Records easily.',
47-
entry_points = {
50+
entry_points={
4851
'console_scripts': ['tfrecorder=tfrecorder.cli:main'],
4952
},
5053
)

tfrecorder/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,5 @@
1616

1717
"""Imports."""
1818
from tfrecorder import accessor
19-
from tfrecorder import client
19+
from tfrecorder.client import create_tfrecords
20+
from tfrecorder.check import check_tfrecords

0 commit comments

Comments
 (0)