-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
81 lines (68 loc) · 1.63 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
78
79
80
81
[tool.black]
line-length = 120
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
| docs/build/
| node_modules/
| venve/
| .venv/
)
'''
[tool.poetry]
name = "lipo"
readme = 'Readme.md' # Markdown files are supported
version = "1.2.1"
authors = ["Jan Beitner"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3"]
description = "Global, derivative- and parameter-free (hyperparameter) optimization"
repository = "https://github.com/jdb78/lipo"
[tool.poetry.dependencies]
python = "^3.6.1"
scikit-learn = ">=0.22.1"
dlib = "^19.21.1"
tqdm = "^4.55.0"
pytest-github-actions-annotate-failures = {version = "*", optional = true}
[tool.poetry.dev-dependencies]
mypy = "*"
wheel = "*"
flake8 = "*"
pylint = "*"
isort = "*"
pytest = "*" # pytest sugar is not compatible
pytest-xdist = "*"
pytest-cov = "*"
pytest-sugar = "*"
coverage = "*"
# documentatation
sphinx = "*"
m2r = "*"
sphinx-autobuild = "*"
nbsphinx = "*"
pydata-sphinx-theme = "*"
[tool.poetry.extras] # extras
github-actions = ["pytest-github-actions-annotate-failures"]
[tool.poetry-dynamic-versioning]
enable = true
vcs = "git"
dirty = false
style = "semver" # semantic versioning
[build-system] # make the package pip installable
requires = ["poetry_core>=1.0.0", "poetry-dynamic-versioning>=0.9.0"]
build-backend = "poetry.core.masonry.api"