-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (34 loc) · 868 Bytes
/
pyproject.toml
File metadata and controls
39 lines (34 loc) · 868 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
[build-system]
requires = ["setuptools>=64.0"]
build-backend = "setuptools.build_meta"
[project]
name = "matlon"
version = "0.0.1"
description = "matlon.ch website"
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.9"
authors = [{name = "Andri Kraemer", email = "akraemer@matlon.ch"}]
keywords = ["nbdev", "jupyter", "notebook", "python"]
dependencies = ["fastcore", "pydantic"]
[project.urls]
Homepage = "https://github.com/mtln/matlon"
[project.entry-points.nbdev]
matlon = "matlon._modidx:d"
[tool.nbdev]
doc_path = "_docs"
lib_path = "matlon"
nbs_path = "nbs"
recursive = true
tst_flags = "notest"
put_version_in_init = true
custom_sidebar = true
doc_host = "https://www.matlon.ch"
doc_baseurl = "/"
branch = "main"
user = "mtln"
repo = "matlon"
title = "matlon"
black_formatting = false
[tool.setuptools.packages.find]
include = ["matlon*"]