aswerdlow's picture
Initial commit
131da64
# Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved
# type: ignore
from pathlib import Path
from read_version import read_version
from setuptools import find_namespace_packages, setup
setup(
name="hydra-submitit-launcher",
version=read_version("hydra_plugins/hydra_submitit_launcher", "__init__.py"),
author="Jeremy Rapin, Jieru Hu, Omry Yadan",
author_email="[email protected], [email protected], [email protected]",
description="Submitit Launcher for Hydra apps",
long_description_content_type="text/markdown",
url="https://github.com/facebookincubator/submitit",
packages=find_namespace_packages(include=["hydra_plugins.*"]),
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Development Status :: 4 - Beta",
],
install_requires=[
"hydra-core>=1.1.0.dev7",
"submitit>=1.3.3",
],
include_package_data=True,
)