forked from fastai/fastai
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (31 loc) · 1.77 KB
/
pyproject.toml
File metadata and controls
40 lines (31 loc) · 1.77 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[build-system]
requires = ["setuptools>=64"]
build-backend = "setuptools.build_meta"
[project]
name = "fastai"
dynamic = ["version"]
description = "fastai simplifies training fast and accurate neural nets using modern best practices"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "Apache-2.0"}
authors = [{name = "Jeremy Howard, Sylvain Gugger, and contributors", email = "info@fast.ai"}]
keywords = ['fastai,', 'deep', 'learning,', 'machine', 'learning']
classifiers = ["Natural Language :: English", "Intended Audience :: Developers", "Development Status :: 4 - Beta", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3 :: Only"]
dependencies = ['fastdownload>=0.0.5,<2', 'fastcore>=1.8.0', 'fasttransform>=0.0.2', 'torchvision>=0.11', 'matplotlib', 'pandas', 'requests', 'pyyaml', 'fastprogress>=0.2.4', 'pillow>=9.0.0', 'scikit-learn', 'scipy', 'spacy<4', 'packaging', 'plum-dispatch', 'cloudpickle', 'torch>=1.10,<3']
[project.urls]
Repository = "https://github.com/fastai/fastai"
Documentation = "https://docs.fast.ai/"
[project.entry-points.nbdev]
fastai = "fastai._modidx:d"
[project.optional-dependencies]
dev = ['nbdev', 'ipywidgets', 'lightning', 'pytorch-ignite', 'transformers', 'sentencepiece', 'tensorboard', 'pydicom', 'catalyst', 'flask_compress', 'captum>=0.4.1,<=0.8.0', 'flask', 'wandb', 'kornia', 'scikit-image', 'comet_ml', 'albumentations', 'opencv-python', 'pyarrow', 'ninja', 'timm>=0.9', 'accelerate>=0.21', 'ipykernel']
[project.scripts]
configure_accelerate = "fastai.distributed:configure_accelerate"
[tool.setuptools.dynamic]
version = {attr = "fastai.__version__"}
[tool.setuptools.packages.find]
include = ["fastai"]
[tool.nbdev]
tst_flags = ['slow', 'cpp', 'cuda', 'multicuda']
jupyter_hooks = true
custom_sidebar = true