-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
48 lines (44 loc) · 1.07 KB
/
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
[tool.poetry]
name = "sigmoid"
version = "0.1.0"
description = "Open source Scalable Infrascture for General Model Optimization on Inhomogenuous Datasets."
authors = ["MindsDB Inc. <[email protected]>"]
readme = "README.md"
homepage = "https://github.com/mindsdb/open-sigmoid"
license = "MIT"
[tool.poetry.dependencies]
python = ">=3.9,<3.12"
iterative_stratification = "^0.1"
matplotlib = "^3.8"
mysql-connector = "^2.2"
numpy = "1.26"
pandas = "2.1.3"
scikit_learn = "1.3.2"
h5py = "3.10.0"
SQLAlchemy = "^2.0"
torchmetrics = "^1.2"
type_infer = "0.0.15"
pyyaml = "^6.0"
greenery = "^3.2"
[tool.poetry.group.dev.dependencies]
autoapi = "^2"
pytest = ">5"
sphinx = ">6"
sphinx_autodoc_typehints = "^2"
sphinx_autoapi = "^3"
sphinx_rtd_theme = "^2"
nbsphinx = "^0.9"
myst_parser = "^2"
recommonmark = "^0.6.0"
flake8 = "^3.8.2"
pytest-mypy = "^0.6.2"
pytest-cov = "^2.9.0"
pytest-flake8 = "^1.0.6"
pytest-mock = "^3.1.1"
bump2version = "^1.0.0"
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"