-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
49 lines (43 loc) · 983 Bytes
/
pyproject.toml
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
43
44
45
46
47
48
49
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "labproject"
version = "0.1"
dependencies = [
"numpy",
"scipy",
"scikit-learn",
"matplotlib",
"torch",
"OmegaConf",
"torchvision",
"seaborn",
"pandas"
]
[project.optional-dependencies]
docs = [
"mkdocs",
# Newer versions currently produce a "'mermaid.js' is undefined" error, see https://github.com/danielfrg/mkdocs-jupyter/issues/176
"mkdocs-jupyter==0.24.2",
"mkdocstrings[python]>=0.18",
"mkdocs-include-markdown-plugin",
"pymdown-extensions",
]
dev = [
"black",
"pre-commit",
"jupyter"
]
[tool.setuptools.packages.find]
include=["labproject"]
# Black Configuration
[tool.black]
line-length = 100 # Example: set the line length to 100
# Pre-commit Configuration
[[tool.pre-commit.repos]]
repo = "https://github.com/psf/black"
rev = "24.1.1"
hooks = [
{ id = "black", language_version = "python3" }
]