加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 716 Bytes
一键复制 编辑 原始数据 按行查看 历史
Renovamen 提交于 2021-02-19 22:30 . Change package name to 'flint'
from os import path
from setuptools import setup, find_packages
current_path = path.abspath(path.dirname(__file__))
# load content from `README.md`
def readme():
readme_path = path.join(current_path, 'README.md')
with open(readme_path, encoding = 'utf-8') as fp:
return fp.read()
setup(
name = 'flint',
version = '0.1.0',
packages = find_packages(),
description = 'A toy deep learning framework built with Numpy from scratch with a PyTorch-like API.',
long_description = readme(),
long_description_content_type = 'text/markdown',
license = 'MIT',
author = 'Xiaohan Zou',
author_email = 'renovamenzxh@gmail.com',
url = 'https://github.com/Renovamen/flint'
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化