forked from keras-team/keras
-
Notifications
You must be signed in to change notification settings - Fork 0
/
oss_setup.py
92 lines (84 loc) · 3.94 KB
/
oss_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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
# Copyright 2023 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.
# ==============================================================================
"""Setup script for the Keras pip package."""
import os
import setuptools
DESCRIPTION = """Keras is a deep learning API written in Python,
running on top of the machine learning platform TensorFlow.
It was developed with a focus on enabling fast experimentation and
providing a delightful developer experience.
The purpose of Keras is to give an *unfair advantage* to any developer
looking to ship ML-powered apps.
Keras is:
- **Simple** -- but not simplistic. Keras reduces developer *cognitive load*
to free you to focus on the parts of the problem that really matter.
Keras focuses on ease of use, debugging speed, code elegance & conciseness,
maintainability, and deployability (via TFServing, TFLite, TF.js).
- **Flexible** -- Keras adopts the principle of *progressive disclosure of
complexity*: simple workflows should be quick and easy, while arbitrarily
advanced workflows should be *possible* via a clear path that builds upon
what you've already learned.
- **Powerful** -- Keras provides industry-strength performance and
scalability: it is used by organizations and companies including NASA,
YouTube, and Waymo. That's right -- your YouTube recommendations are
powered by Keras, and so is the world's most advanced driverless vehicle.
"""
with open(os.path.abspath(__file__)) as f:
contents = f.read()
if contents.count("{PACKAGE}") > 1 or contents.count("{VERSION}") > 1:
raise ValueError(
"You must fill the 'PACKAGE' and 'VERSION' "
"tags before running setup.py. If you are trying to "
"build a fresh package, you should be using "
"`pip_build.py` instead of `setup.py`."
)
setuptools.setup(
name="{{PACKAGE}}",
# Version strings with `-` characters are semver compatible,
# but incompatible with pip. For pip, we will remove all `-`` characters.
version="{{VERSION}}",
description="Deep learning for humans.",
long_description=DESCRIPTION,
url="https://keras.io/",
download_url="https://github.com/keras-team/keras/tags",
author="Keras team",
author_email="keras-users@googlegroups.com",
packages=setuptools.find_packages(),
install_requires=[],
# Supported Python versions
python_requires=">=3.8",
# PyPI package information.
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
],
license="Apache 2.0",
keywords=["keras", "tensorflow", "machine learning", "deep learning"],
)