This repository was archived by the owner on Jul 31, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +41
-0
lines changed
Expand file tree Collapse file tree 1 file changed +41
-0
lines changed Original file line number Diff line number Diff line change 1+ # Lint as: python3
2+
3+ # Copyright 2020 Google LLC.
4+ #
5+ # Licensed under the Apache License, Version 2.0 (the "License");
6+ # you may not use this file except in compliance with the License.
7+ # You may obtain a copy of the License at
8+ #
9+ # http://www.apache.org/licenses/LICENSE-2.0
10+ #
11+ # Unless required by applicable law or agreed to in writing, software
12+ # distributed under the License is distributed on an "AS IS" BASIS,
13+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+ # See the License for the specific language governing permissions and
15+ # limitations under the License.
16+
17+ from setuptools import find_packages
18+ from setuptools import setup
19+
20+
21+ REQUIRED_PACKAGES = [
22+ "apache-beam[gcp] >= 2.22.0" ,
23+ "pandas >= 1.0.4" ,
24+ "tensorflow_transform >= 0.22" ,
25+ "Pillow >= 7.1.2" ,
26+ "coverage >= 5.1" ,
27+ "ipython >= 7.15.0" ,
28+ "nose >= 1.3.7" ,
29+ "pylint >= 2.5.3" ,
30+ "fire >= 0.3.1" ,
31+ ]
32+
33+
34+ setup (
35+ name = 'tfrutil' ,
36+ version = '0.1' ,
37+ install_requires = REQUIRED_PACKAGES ,
38+ packages = find_packages (),
39+ include_package_data = True ,
40+ description = 'TFRUtil creates TensorFlow Records easily.'
41+ )
You can’t perform that action at this time.
0 commit comments