Skip to content

Commit

Permalink
Add setup files.
Browse files Browse the repository at this point in the history
  • Loading branch information
pavithrasv committed Mar 9, 2020
1 parent f8ff434 commit b43fd20
Show file tree
Hide file tree
Showing 2 changed files with 55 additions and 0 deletions.
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[metadata]
description-file = README.md
53 changes: 53 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
# Copyright 2020 Google LLC. 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."""

from __future__ import absolute_import

from setuptools import find_packages
from setuptools import setup

VERSION = '1.0.0'


setup(
name='tensorflow-cloud',
version=VERSION,
description='',
url='https://github.com/tensorflow/cloud',
author='The tensorflow cloud authors',
author_email='tensorflow-cloud@google.com',
license='Apache License 2.0',
install_requires=[
'docker',
'google-api-python-client',
],
extras_require={
'tests': ['pytest',
'flake8',
'mock'],
},
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Operating System :: Unix',
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',
'Topic :: Software Development'
],
packages=find_packages(exclude=('tests',))
)

0 comments on commit b43fd20

Please sign in to comment.