keras/setup.py

66 lines
1.8 KiB
Python
Raw Normal View History

"""Setup script."""
2023-05-14 18:51:30 +00:00
import os
import pathlib
from setuptools import find_packages
from setuptools import setup
2023-05-14 18:51:30 +00:00
def read(rel_path):
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, rel_path)) as fp:
return fp.read()
def get_version(rel_path):
for line in read(rel_path).splitlines():
if line.startswith("__version__"):
delim = '"' if '"' in line else "'"
return line.split(delim)[1]
raise RuntimeError("Unable to find version string.")
HERE = pathlib.Path(__file__).parent
2023-05-14 18:51:30 +00:00
README = (HERE / "README.md").read_text()
2023-09-22 16:29:36 +00:00
if os.path.exists("keras/version.py"):
VERSION = get_version("keras/version.py")
2023-07-16 21:28:49 +00:00
else:
2023-09-22 16:29:36 +00:00
VERSION = get_version("keras/__init__.py")
setup(
2023-09-22 16:29:36 +00:00
name="keras",
description="Multi-backend Keras.",
long_description_content_type="text/markdown",
2023-07-07 18:49:33 +00:00
long_description=README,
2023-05-14 18:51:30 +00:00
version=VERSION,
2023-09-22 16:29:36 +00:00
url="https://github.com/keras-team/keras",
author="Keras team",
2023-07-07 18:49:33 +00:00
author_email="keras-users@googlegroups.com",
license="Apache License 2.0",
install_requires=[
"absl-py",
"numpy",
"rich",
2023-07-07 18:49:33 +00:00
"namex",
"h5py",
"dm-tree",
],
# Supported Python versions
python_requires=">=3.9",
classifiers=[
2023-07-07 18:49:33 +00:00
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3 :: Only",
"Operating System :: Unix",
"Operating System :: MacOS",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Software Development",
],
packages=find_packages(exclude=("*_test.py",)),
)