-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (30 loc) · 829 Bytes
/
pyproject.toml
File metadata and controls
37 lines (30 loc) · 829 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
[tool.poetry]
name = "cmnemoi-learn"
version = "0.5.0"
description = "Machine Learning from scratch by Charles-Meldhine Madi Mnemoi"
authors = ["Charles-Meldhine Madi Mnemoi <charlesmeldhine.madimnemoi@gmail.com>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/cmnemoi/cmnemoi-learn.git"
packages = [{include = "cmnemoi_learn"}]
[tool.poetry.dependencies]
python = "^3.11"
numpy = "^1.25.2"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
jupyter = "^1.0.0"
black = "^23.7.0"
pylint = "^2.17.5"
mypy = "^1.4.1"
[tool.poetry.group.test]
optional = true
[tool.poetry.group.test.dependencies]
pytest = "^7.4.0"
pytest-cov = "^4.1.0"
scikit-learn = "^1.3.0"
[tool.black]
line-length = 100
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"