Skip to content

Commit

Permalink
Merge pull request tensorflow#41 from tensorflow:MarkDaoust-patch-1
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 243087602
  • Loading branch information
copybara-github committed Apr 11, 2019
2 parents 95476c5 + 12e3a4f commit 0f88a99
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
import sys

from setuptools import setup
from setuptools import find_packages

nightly = False
if '--nightly' in sys.argv:
Expand Down Expand Up @@ -71,7 +72,7 @@
url='http://github.com/tensorflow/examples',
download_url='https://github.com/tensorflow/examples/tags',
license='Apache 2.0',
packages=['tensorflow_examples'],
packages=find_packages(),
scripts=[],
install_requires=REQUIRED_PKGS,
extras_require={
Expand All @@ -83,5 +84,5 @@
'License :: OSI Approved :: Apache Software License',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
],
keywords='tensorflow api reference',
keywords='tensorflow examples',
)

0 comments on commit 0f88a99

Please sign in to comment.