2020-10-26 23:19:50 +08:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
|
|
|
import os
|
|
|
|
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:
|
2020-10-26 23:54:55 +08:00
|
|
|
long_description = f.read()
|
2020-10-26 23:19:50 +08:00
|
|
|
|
|
|
|
setup(name='tinygrad',
|
2020-10-27 23:14:22 +08:00
|
|
|
version='0.2.2',
|
2020-10-26 23:19:50 +08:00
|
|
|
description='You like pytorch? You like micrograd? You love tinygrad! heart',
|
|
|
|
author='George Hotz',
|
|
|
|
license='MIT',
|
|
|
|
long_description=long_description,
|
|
|
|
long_description_content_type='text/markdown',
|
|
|
|
packages = ['tinygrad'],
|
|
|
|
classifiers=[
|
2020-10-26 23:54:55 +08:00
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
"License :: OSI Approved :: MIT License"
|
2020-10-26 23:19:50 +08:00
|
|
|
],
|
|
|
|
install_requires=['numpy', 'requests'],
|
|
|
|
python_requires='>=3.6',
|
|
|
|
include_package_data=True)
|