-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
77 lines (65 loc) · 1.59 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
[build-system]
requires = [
"setuptools >= 61.10.0",
"setuptools-scm >= 8.0.1"
]
build-backend = "setuptools.build_meta"
[tool.setuptools]
py-modules = []
[tool.setuptools.packages.find]
where = ["."]
include = ["ml2sql", "ml2sql*"]
[tool.setuptools.package-data]
"ml2sql.data" = ["**/*"]
[project]
name = "ml2sql"
dynamic = ["version"]
authors = [
{name = "Kasper de", email = "kasperde@hotmail.com"},
]
description = "Automated interpretable ML tool with SQL version of model"
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"interpret == 0.6.3",
"numpy",
"duckdb",
"scikit-learn",
"imblearn",
"kaleido",
"typer",
'pywin32 ; platform_system == "Windows"',
]
keywords = ["SQL", "ML", "automl", "interpret", "ML 2 SQL", "EBM", "Explainable Boosting Machine", "ML to SQL"]
[project.urls]
Homepage = "https://github.com/kaspersgit/ml_2_sql"
Issues = "https://github.com/kaspersgit/ml_2_sql/issues"
[project.optional-dependencies]
dev = [
"pytest",
"pytest-mock",
"pip-tools",
"ruff",
"pre-commit",
"coverage"
]
[project.scripts]
ml2sql = "ml2sql.main:app"
[tool.setuptools.dynamic]
version = {attr = "ml2sql.__version__"}
[tool.pytest.ini_options]
addopts = "-ra -q --strict-markers"
testpaths = [
"tests"
]
log_cli = true
log_level = "DEBUG"
log_format = "%(asctime)s %(levelname)s %(message)s"
log_date_format = "%Y-%m-%d %H:%M:%S"
[tool.setuptools_scm]