MinGPT / setup.py
Katiyar48's picture
Upload folder using huggingface_hub
4673b21 verified
from setuptools import setup
setup(name='minGPT',
version='0.0.1',
author='Andrej Karpathy',
packages=['mingpt'],
description='A PyTorch re-implementation of GPT',
license='MIT',
install_requires=[
'torch',
],
)