mirror of
https://github.com/d2l-ai/d2l-zh.git
synced 2025-12-08 18:26:15 +00:00
* add chap2-preliminaries of paddle * change 15.2 title in chinese version (#1109) change title ’15.2. 情感分析:使用递归神经网络‘ to ’15.2. 情感分析:使用循环神经网络‘ * 修改部分语义表述 (#1105) * update chap2-preliminaries of paddle * Update r0.17.5 (#1120) * Bump versions in installation * add d2l lib * Update chapter_preliminaries/calculus.md * Sync paddle lib chap2 Co-authored-by: zhou201505013 <39976863+zhou201505013@users.noreply.github.com> Co-authored-by: Xinwei Liu <xinzone@outlook.com> Co-authored-by: Anirudh Dagar <anirudhdagar6@gmail.com> Co-authored-by: Aston Zhang <22279212+astonzhang@users.noreply.github.com>
25 lines
513 B
Python
25 lines
513 B
Python
from setuptools import setup, find_packages
|
|
import d2l
|
|
|
|
requirements = [
|
|
'jupyter==1.0.0',
|
|
'numpy==1.21.5',
|
|
'matplotlib==3.5.1',
|
|
'requests==2.25.1',
|
|
'pandas==1.2.4'
|
|
]
|
|
|
|
setup(
|
|
name='d2l',
|
|
version=d2l.__version__,
|
|
python_requires='>=3.5',
|
|
author='D2L Developers',
|
|
author_email='d2l.devs@gmail.com',
|
|
url='https://d2l.ai',
|
|
description='Dive into Deep Learning',
|
|
license='MIT-0',
|
|
packages=find_packages(),
|
|
zip_safe=True,
|
|
install_requires=requirements,
|
|
)
|