setup.py 3.01 KB
Newer Older
Hongkun Yu's avatar
Hongkun Yu committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Copyright 2019 The TensorFlow Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ==============================================================================
"""Sets up TensorFlow Official Models."""
Chen Chen's avatar
Chen Chen committed
16
import datetime
Chen Chen's avatar
Chen Chen committed
17
import os
Chen Chen's avatar
Chen Chen committed
18
19
import sys

Hongkun Yu's avatar
Hongkun Yu committed
20
21
22
from setuptools import find_packages
from setuptools import setup

Hongkun Yu's avatar
Hongkun Yu committed
23
version = '2.4.0'
Chen Chen's avatar
Chen Chen committed
24
25
26

project_name = 'tf-models-official'

Chen Chen's avatar
Chen Chen committed
27
28
29
30
31
32
long_description = """The TensorFlow official models are a collection of
models that use TensorFlow's high-level APIs.
They are intended to be well-maintained, tested, and kept up to date with the
latest TensorFlow API. They should also be reasonably optimized for fast
performance while still being easy to read."""

Chen Chen's avatar
Chen Chen committed
33
34
35
36
37
38
if '--project_name' in sys.argv:
  project_name_idx = sys.argv.index('--project_name')
  project_name = sys.argv[project_name_idx + 1]
  sys.argv.remove('--project_name')
  sys.argv.pop(project_name_idx)

Chen Chen's avatar
Chen Chen committed
39
40
41
42
43
44
45
46
47

def _get_requirements():
  """Parses requirements.txt file."""
  install_requires_tmp = []
  dependency_links_tmp = []
  with open(
      os.path.join(os.path.dirname(__file__), '../requirements.txt'), 'r') as f:
    for line in f:
      package_name = line.strip()
Chen Chen's avatar
Chen Chen committed
48
49
50
      # Skip empty line or comments starting with "#".
      if not package_name or package_name[0] == '#':
        continue
Chen Chen's avatar
Chen Chen committed
51
52
53
54
55
56
57
58
      if package_name.startswith('-e '):
        dependency_links_tmp.append(package_name[3:].strip())
      else:
        install_requires_tmp.append(package_name)
  return install_requires_tmp, dependency_links_tmp

install_requires, dependency_links = _get_requirements()

Chen Chen's avatar
Chen Chen committed
59
if project_name == 'tf-models-nightly':
Chen Chen's avatar
Chen Chen committed
60
  version += '.dev' + datetime.datetime.now().strftime('%Y%m%d')
Chen Chen's avatar
Chen Chen committed
61
  install_requires.append('tf-nightly')
62
  install_requires.append('tensorflow-text-nightly')
Chen Chen's avatar
Chen Chen committed
63
else:
Hongkun Yu's avatar
Hongkun Yu committed
64
  install_requires.append('tensorflow>=2.4.0')
65
  install_requires.append('tensorflow-text>=2.4.0')
Chen Chen's avatar
Chen Chen committed
66
67
68

print('install_requires: ', install_requires)
print('dependency_links: ', dependency_links)
Chen Chen's avatar
Chen Chen committed
69

Hongkun Yu's avatar
Hongkun Yu committed
70
setup(
Chen Chen's avatar
Chen Chen committed
71
72
    name=project_name,
    version=version,
Hongkun Yu's avatar
Hongkun Yu committed
73
    description='TensorFlow Official Models',
Chen Chen's avatar
Chen Chen committed
74
    long_description=long_description,
Hongkun Yu's avatar
Hongkun Yu committed
75
76
77
78
    author='Google Inc.',
    author_email='no-reply@google.com',
    url='https://github.com/tensorflow/models',
    license='Apache 2.0',
Chen Chen's avatar
Chen Chen committed
79
80
81
82
    packages=find_packages(exclude=[
        'research*',
        'official.pip_package*',
        'official.benchmark*',
83
        'official.colab*',
Chen Chen's avatar
Chen Chen committed
84
    ]),
Hongkun Yu's avatar
Hongkun Yu committed
85
    exclude_package_data={
Chen Chen's avatar
Chen Chen committed
86
87
        '': ['*_test.py',],
    },
Chen Chen's avatar
Chen Chen committed
88
89
    install_requires=install_requires,
    dependency_links=dependency_links,
Hongkun Yu's avatar
Hongkun Yu committed
90
91
    python_requires='>=3.6',
)