-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (36 loc) · 920 Bytes
/
pyproject.toml
File metadata and controls
42 lines (36 loc) · 920 Bytes
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
41
42
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "flashy"
description = "Minimal solver for deep learning"
authors = [
{name = "Alexandre Défossez", email = "alex@gradium.ai"}
]
license = {text = "MIT"}
readme = "README.md"
requires-python = ">=3.8.0"
classifiers = [
"License :: OSI Approved :: MIT License",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
keywords = []
dynamic = ["version", "dependencies"]
[project.urls]
Homepage = "https://github.com/gradium-ai/flashy"
[project.optional-dependencies]
dev = [
"coverage",
"flake8",
"mypy",
"pdoc3",
"pytest",
"hydra_core"
]
[tool.setuptools.dynamic]
version = {attr = "flashy.__version__"}
dependencies = {file = ["requirements.txt"]}
[tool.setuptools.packages.find]
include = ["flashy*"]
[tool.setuptools.package-data]
flashy = ["py.typed"]