-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (29 loc) · 756 Bytes
/
Copy pathpyproject.toml
File metadata and controls
33 lines (29 loc) · 756 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
[tool.poetry]
name = "mlgear"
version = "0.6-dev0"
description = "Utility scripts for machine learning"
authors = ["Peter Hurford <peter@peterhurford.com>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/peterhurford/mlgear"
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[tool.poetry.dependencies]
python = "^3.9"
keras = "*"
lightgbm = "*"
numpy = "*"
pandas = "*"
scikit-learn = "*"
[tool.poetry.group.dev.dependencies]
flake8 = "*"
pytest = "*"
[tool.pytest.ini_options]
testpaths = ["tests"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"