-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
75 lines (64 loc) · 1.71 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
#!/usr/bin/env python3
# Copyright 2023 ZTE corporation. All Rights Reserved.
# SPDX-License-Identifier: Apache-2.0
"""
Model optimizer tf.
"""
from setuptools import find_packages, setup
from pkg_resources import DistributionNotFound, get_distribution
_VERSION = '0.0.0'
_REQUIRED_PACKAGES = [
'isort==4.3.21',
'flake8==3.9.2',
'requests==2.25.0',
'tensorflow==2.5.0',
'jsonschema==3.1.1',
'networkx==2.4',
'mpi4py==3.1.3',
'horovod==0.24.0',
'tf2cv==0.0.16',
'PyYAML==5.3.1',
'types-PyYAML',
'types-pkg_resources',
'types-requests'
]
_TEST_REQUIRES = [
'py==1.11.0',
'bandit',
'pytest-cov',
'pytest-flake8==1.0.7',
'pytest-mypy',
'pytest-pylint',
'pytest-xdist'
]
def get_dist(pkgname):
"""
Get distribution
:param pkgname: str, package name
:return:
"""
try:
return get_distribution(pkgname)
except DistributionNotFound:
return None
if get_dist('tensorflow') is None and get_dist('tensorflow-gpu') is not None:
_REQUIRED_PACKAGES.remove('tensorflow==2.5.0')
setup(
name="model_optimizer_tf",
version=_VERSION.replace('-', ''),
author='ZTE',
author_email='[email protected]',
packages=find_packages('src'),
package_dir={'': 'src'},
description=__doc__,
license='Apache 2.0',
keywords='optimizer model',
install_requires=_REQUIRED_PACKAGES,
extras_require={'test': _TEST_REQUIRES},
package_data={
'model_optimizer_tf': ['**/*.json',
'pruner/scheduler/uniform_auto/*.yaml',
'pruner/scheduler/uniform_specified_layer/*.yaml',
'pruner/scheduler/distill/*.yaml']
},
)