-
-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (28 loc) · 1.13 KB
/
pyproject.toml
File metadata and controls
34 lines (28 loc) · 1.13 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
[build-system]
requires = ["setuptools>=64"]
build-backend = "setuptools.build_meta"
[project]
name = "fasterai"
dynamic = ["version"]
description = "A library to make neural networks lighter and faster with fastai"
readme = "README.md"
requires-python = ">=3.6"
license = "Apache-2.0"
authors = [{name = "Nathan Hubens", email = "nathan.hubens@gmail.com"}]
keywords = ['pruning', 'sparsification', 'knowledge-distillation', 'quantization', 'compression', 'deep-learning']
classifiers = ["Natural Language :: English", "Intended Audience :: Developers", "Development Status :: 3 - Alpha", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3 :: Only"]
dependencies = ['fastai>=2.2', 'torch-pruning>=1.2', 'einops']
[project.urls]
Repository = "https://github.com/FasterAI-Labs/fasterai"
Documentation = "https://FasterAI-Labs.github.io/fasterai/"
[project.entry-points.nbdev]
fasterai = "fasterai._modidx:d"
[tool.setuptools.dynamic]
version = {attr = "fasterai.__version__"}
[tool.setuptools.packages.find]
include = ["fasterai*"]
[tool.nbdev]
branch = 'master'
tst_flags = 'slow'
custom_sidebar = true
title = 'fasterai'