setup.py 2.48 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

Chen Chen's avatar
Chen Chen committed
23
version = '2.2.0'
Chen Chen's avatar
Chen Chen committed
24
25
26
27
28
29
30
31
32

project_name = 'tf-models-official'

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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49

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()
      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
50
if project_name == 'tf-models-nightly':
Chen Chen's avatar
Chen Chen committed
51
  version += '.dev' + datetime.datetime.now().strftime('%Y%m%d')
Chen Chen's avatar
Chen Chen committed
52
53
54
55
56
57
  install_requires.append('tf-nightly')
else:
  install_requires.append('tensorflow>=2.1.0')

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

Hongkun Yu's avatar
Hongkun Yu committed
59
setup(
Chen Chen's avatar
Chen Chen committed
60
61
    name=project_name,
    version=version,
Hongkun Yu's avatar
Hongkun Yu committed
62
63
64
65
66
    description='TensorFlow Official Models',
    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
67
68
69
70
71
72
73
74
    packages=find_packages(exclude=[
        'research*',
        'tutorials*',
        'samples*',
        'official.r1*',
        'official.pip_package*',
        'official.benchmark*',
    ]),
Hongkun Yu's avatar
Hongkun Yu committed
75
    exclude_package_data={
Chen Chen's avatar
Chen Chen committed
76
77
        '': ['*_test.py',],
    },
Chen Chen's avatar
Chen Chen committed
78
79
    install_requires=install_requires,
    dependency_links=dependency_links,
Hongkun Yu's avatar
Hongkun Yu committed
80
81
    python_requires='>=3.6',
)