-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
55 lines (47 loc) · 1.28 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
49
50
51
52
53
54
55
[tool.poetry]
name = "datasette-ml"
version = "0.1.2"
description = "A Datasette plugin providing an MLOps platform to train, eval and predict machine learning models"
repository = "https://github.com/rclement/datasette-ml"
authors = ["Romain Clement"]
license = "Apache License, Version 2.0"
readme = "README.md"
packages = [{include = "datasette_ml"}]
[tool.poetry.dependencies]
python = "^3.8.1"
datasette = "*"
sqlite-ml = "==0.1.2"
[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-asyncio = "==0.23.2"
pytest-cov = "==4.1.0"
sqlite-utils = "==3.36"
[tool.poetry.plugins."datasette"]
"ml" = "datasette_ml"
[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 = "datasette.*"
ignore_missing_imports = "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"