generated from wakame1367/python-package-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
44 lines (40 loc) · 890 Bytes
/
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
[tool.poetry]
name = "OptCAT"
version = "0.1.0"
description = "OptCAT (= Optuna + CatBoost) provides a scikit-learn compatible estimator that tunes hyperparameters in CatBoost with Optuna."
authors = ["wakame1367 <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/wakamezake/OptCAT"
keywords = ["catboost", "optuna", "hyperparameter tuning"]
[tool.poetry.dependencies]
python = ">=3.6.1"
catboost = "^0.22"
scikit-learn = "^0.22.2"
pandas = "^1.0.2"
optuna = "^1.2.0"
[tool.poetry.dev-dependencies]
pytest = "*"
pre-commit = "*"
flake8 = "*"
mypy = "*"
[tool.black]
line-length = 88
target-version = ['py36', 'py37', 'py38']
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"