https://github.com/kubeflow/katib
Raw File
Tip revision: fca31abeb05a2a212d978d834e60f19a224011cb authored by avelichk on 13 June 2020, 16:32:27 UTC
Move imports
Tip revision: fca31ab
setup.py
# Copyright 2019 kubeflow.org.
#
# 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.

import setuptools

with open('requirements.txt') as f:
  REQUIRES = f.readlines()

setuptools.setup(
  name='kubeflow-katib',
  version='0.0.2',
  author="Kubeflow Authors",
  author_email='premnath.vel@gmail.com',
  license="Apache License Version 2.0",
  url="https://github.com/kubeflow/katib/sdk/python",
  description="Katib Python SDK",
  long_description="Katib Python SDK",
  packages=setuptools.find_packages(
    include=("kubeflow*")),
  package_data={},
  include_package_data=False,
  zip_safe=False,
  classifiers=[
    'Intended Audience :: Developers',
    'Intended Audience :: Education',
    'Intended Audience :: Science/Research',
    'Programming Language :: Python :: 2',
    'Programming Language :: Python :: 2.7',
    'Programming Language :: Python :: 3',
    'Programming Language :: Python :: 3.6',
    'Programming Language :: Python :: 3.7',
    "License :: OSI Approved :: Apache Software License",
    "Operating System :: OS Independent",
    'Topic :: Scientific/Engineering',
    'Topic :: Scientific/Engineering :: Artificial Intelligence',
    'Topic :: Software Development',
    'Topic :: Software Development :: Libraries',
    'Topic :: Software Development :: Libraries :: Python Modules',
  ],
  install_requires=REQUIRES
)
back to top