diff --git a/setup.py b/setup.py index 3c6841fece..fc54c279aa 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ from setuptools import setup directory = os.path.abspath(os.path.dirname(__file__)) with open(os.path.join(directory, 'README.md'), encoding='utf-8') as f: - long_description = f.read() + long_description = f.read() setup(name='tinygrad', version='1.0.0', @@ -16,8 +16,8 @@ setup(name='tinygrad', long_description_content_type='text/markdown', packages = ['tinygrad'], classifiers=[ - "Programming Language :: Python :: 3", - "License :: OSI Approved :: MIT License" + "Programming Language :: Python :: 3", + "License :: OSI Approved :: MIT License" ], install_requires=['numpy', 'requests'], python_requires='>=3.6',