1
0
Fork 0
mirror of https://github.com/karpathy/minGPT synced 2024-04-20 00:54:06 +02:00
minGPT/setup.py

13 lines
267 B
Python

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',
],
)