1 Star 0 Fork 0

samlet / fastai_dev

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
setup.py 1.28 KB
AI 代码解读
一键复制 编辑 原始数据 按行查看 历史
Sylvain Gugger 提交于 2019-11-22 13:40 . Fix setup
#!/usr/bin/env python
from setuptools import setup,find_packages
exec(open('dev/fastai2/version.py').read())
with open('README.md') as readme_file: readme = readme_file.read()
requirements = """
torch>=1.2.0 torchvision matplotlib pandas requests pyyaml fastprogress>=0.1.22 pillow scikit-learn scipy spacy
""".split()
setup_requirements = ['setuptools>=36.2']
setup(
name = 'fastai2',
version = __version__,
packages = find_packages(),
include_package_data = True,
install_requires = requirements,
setup_requires = setup_requirements,
python_requires = '>=3.6',
description = "fastai v2",
long_description = readme,
long_description_content_type = 'text/markdown',
keywords = 'fastai, deep learning, machine learning',
license = "Apache Software License 2.0",
url = 'https://github.com/fastai/fastai_dev',
author = "Jeremy Howard, Sylvain Gugger, and contributors",
author_email = 'info@fast.ai',
classifiers = [
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
zip_safe = False,
)
1
https://gitee.com/samlet/fastai_dev.git
git@gitee.com:samlet/fastai_dev.git
samlet
fastai_dev
fastai_dev
master

搜索帮助