# Copyright (c) Microsoft Corporation and Henry Lucco.
# Licensed under the MIT License.

from setuptools import setup, find_packages

setup(
    name='chaparral',
    version='0.1',
    packages=find_packages(),
    install_requires=[],
    author='Microsoft, Henry Lucco',
    description="A library for fine-tuning TypeAgent Models",
    license='MIT'
)