-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (52 loc) · 1.09 KB
/
pyproject.toml
File metadata and controls
59 lines (52 loc) · 1.09 KB
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
[project]
name = "optical_toolkit"
version = "1.4.0"
description = "An API for streamlining unsupervised ML ops such as visualizations, clustering, CNN insights, etc."
authors = [
{name = "kenny",email = "97374837+kankenny@users.noreply.github.com"}
]
readme = "README.md"
requires-python = ">=3.10,<4.0"
license = "MIT License"
dependencies = [
"matplotlib (>=3.10.1)",
"numpy (>=2.0.0)",
"scikit-learn (>=1.6.1)",
"tensorflow (>=2.19.0,<3.0.0)",
"tqdm (>=4.67.1,<5.0.0)",
"pypdf (>=5.4.0,<6.0.0)",
"keras (==3.8)"
]
[tool.poetry.group.dev.dependencies]
black = "^25.1.0"
flake8 = "^7.1.2"
isort = "^6.0.1"
pytest = "^8.3.4"
[build-system]
requires = ["poetry"]
build-backend = "poetry.masonry.api"
[tool.black]
exclude = '''
/(
\.eggs
| \.git
| \.venv
| \.env
| build
| dist
| \.mypy_cache
)\
'''
[project.scripts]
optical_toolkit = "optical_toolkit:main"
[tool.commitizen]
version = "0.3.8"
tag_format = "v$version"
version_files = [
"pyproject.toml:version",
"optical_toolkit/__version__.py"
]
[tool.pytest.ini_options]
markers = [
"slow: marks tests as slow",
]