https://github.com/tensorflow/tensor2tensor
Raw File
Tip revision: 029047a06967209ceac0fcff1aeac499594778a6 authored by Lukasz Kaiser on 06 July 2017, 03:17:11 UTC
Merge pull request #104 from lukaszkaiser/push
Tip revision: 029047a
setup.py
"""Install tensor2tensor."""

from setuptools import find_packages
from setuptools import setup

setup(
    name='tensor2tensor',
    version='1.0.10',
    description='Tensor2Tensor',
    author='Google Inc.',
    author_email='no-reply@google.com',
    url='http://github.com/tensorflow/tensor2tensor',
    license='Apache 2.0',
    packages=find_packages(),
    scripts=['tensor2tensor/bin/t2t-trainer', 'tensor2tensor/bin/t2t-datagen'],
    install_requires=[
        'numpy',
        'sympy',
        'six',
    ],
    extras_require={
        'tensorflow': ['tensorflow>=1.2.0rc1'],
        'tensorflow_gpu': ['tensorflow-gpu>=1.2.0rc1'],
    },
    classifiers=[
        'Development Status :: 4 - Beta',
        'Intended Audience :: Developers',
        'Intended Audience :: Science/Research',
        'License :: OSI Approved :: Apache Software License',
        'Topic :: Scientific/Engineering :: Artificial Intelligence',
    ],
    keywords='tensorflow machine learning',)
back to top