-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
46 lines (40 loc) · 1.02 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
[tool.poetry]
name = "sqlite-ml"
version = "0.1.2"
description = "An SQLite extension for machine learning"
authors = ["Romain Clement <[email protected]>"]
license = "Apache License, Version 2.0"
readme = "README.md"
packages = [{include = "sqlite_ml"}]
[tool.poetry.dependencies]
python = "^3.8.1"
scikit-learn = "*"
pandas = "*"
[tool.poetry.group.dev.dependencies]
black = "==23.12.1"
faker = "==19.13.0"
flake8 = "==6.1.0"
mypy = "==1.8.0"
pytest = "==7.4.3"
pytest-cov = "==4.1.0"
sqlite-utils = "==3.35.2"
[tool.mypy]
show_error_codes = "True"
pretty = "True"
follow_imports = "silent"
strict_optional = "True"
warn_redundant_casts = "True"
warn_unused_ignores = "True"
disallow_any_generics = "True"
check_untyped_defs = "True"
no_implicit_reexport = "True"
disallow_untyped_defs = "True"
[[tool.mypy.overrides]]
module = "pandas.*"
ignore_missing_imports = "True"
[[tool.mypy.overrides]]
module = "sklearn.*"
ignore_missing_imports = "True"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"