-
Notifications
You must be signed in to change notification settings - Fork 39
/
setup.py
64 lines (62 loc) · 2.47 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
############################################################################################
#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
#
# https://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.
############################################################################################
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="auto_tensorflow",
version="1.3.4",
author="Hasan Rafiq",
description="""Build Low Code Automated Tensorflow, What-IF explainable models in just 3 lines of code. To make Deep Learning on Tensorflow absolutely easy for the masses with its low code framework and also increase trust on ML models through What-IF model explainability.""",
long_description=long_description,
long_description_content_type="text/markdown",
license='Apache License 2.0',
url="https://github.com/rafiqhasan/auto-tensorflow",
packages = [
"auto_tensorflow"
],
include_package_data=True,
install_requires=[
"keras-tuner==1.0.4",
"tensorflow_text==2.6.0",
"tfx==1.4.0",
"witwidget==1.8.0",
"tensorflow==2.6.2",
"tensorflow_hub==0.12.0",
"tensorflow-metadata==1.4.0",
"ipython==7.29.0",
"tensorflow-estimator==2.6.0",
"joblib==0.14.1",
"tensorboard-plugin-wit==1.8.0",
"tensorboard-data-server==0.6.1",
"google-api-core==1.31.4",
"google-cloud-aiplatform==1.10.0",
"google-cloud==0.34.0",
"apache-beam==2.34.0",
"protobuf==3.19.5",
"jupyterlab-widgets==3.0.3",
"PyYAML==5.4.1",
"pytz==2022.6",
"tensorflow-model-analysis==0.35.0",
"tensorflow-data-validation==1.4.0",
"tensorboard==2.6.0",
"six==1.15.0",
"requests==2.28.1",
"widgetsnbextension==3.6.1"
],
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
)