microsoft/TypeAgent
Publicmirrored fromhttps://github.com/microsoft/TypeAgentAvailable
python/fineTuning/setup.py
14lines · modecode
| 1 | # Copyright (c) Microsoft Corporation and Henry Lucco. |
| 2 | # Licensed under the MIT License. |
| 3 | |
| 4 | from setuptools import setup, find_packages |
| 5 | |
| 6 | setup( |
| 7 | name='chaparral', |
| 8 | version='0.1', |
| 9 | packages=find_packages(), |
| 10 | install_requires=[], |
| 11 | author='Microsoft, Henry Lucco', |
| 12 | description="A library for fine-tuning TypeAgent Models", |
| 13 | license='MIT' |
| 14 | ) |