-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
52 lines (45 loc) · 1.23 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
[build-system]
requires = ["setuptools>=61", "wheel>=0.31.0", "setuptools_scm[toml]>=3.4"]
build-backend = "setuptools.build_meta"
[project]
name = "tabular_ml"
dynamic = ["version", "readme"]
description = "This library wraps popular tabular regression/classification model enabling rapid evaluation and optimization."
authors = [
{name = "Xavier Nogueira", email = "[email protected]"},
]
requires-python = ">=3.11"
keywords = [
'machine-learning',
'pipeline',
'factory',
'tabular',
'regression',
'classification',
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering",
]
dependencies = [
'pandas',
'numpy',
'scipy',
'scikit-learn',
'optuna',
'xgboost',
'catboost',
'lightgbm',
]
[tool.setuptools.packages.find]
where = ["src"]
include = ["tabular_ml*"]
[tool.setuptools.dynamic]
version = {attr = "tabular_ml.__version__"}
readme = {file = "pypi_readme.md"}