-
Notifications
You must be signed in to change notification settings - Fork 16
/
pyproject.toml
76 lines (65 loc) · 1.64 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
# pyproject.toml
[build-system]
# requires = ["setuptools>=61.0.0", "wheel"]
# build-backend = "setuptools.build_meta"
requires = ["flit_core>=3.4"]
build-backend = "flit_core.buildapi"
[project]
name = "micromind"
dynamic=["version"]
description = "MicroMind"
readme = "README.md"
authors = [{ name = "Francesco Paissan & others", email = "[email protected]" }]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
keywords = ["feed", "reader", "tutorial"]
dependencies = [
"torch",
"torchvision",
"torchaudio",
"torchinfo",
"huggingface_hub",
"accelerate==0.23.0",
"onnx",
"loguru"
]
requires-python = ">=3.8"
[project.optional-dependencies]
dev = ["black", "bumpver", "flake8", "isort", "pip-tools", "pytest", "pre-commit"]
conversion = [
"onnx",
"onnx_tf==1.10.0",
"onnx-simplifier==0.4.13",
"onnxruntime==1.13.1",
"openvino-dev==2022.3.0",
"openvino2tensorflow==1.34.0",
"tensorflow_datasets==4.8.1",
"tensorflow==2.11.0",
"tensorflow_probability==0.19.0"
]
[project.urls]
Homepage = "https://github.com/fpaissan/micromind"
[project.scripts]
phinet = "__main__:main"
[tool.isort]
profile = "black"
[tool.setuptools]
py-modules = []
[tool.bumpver]
current_version = "0.2.1"
version_pattern = "MAJOR.MINOR.PATCH"
commit_message = "bump version {old_version} -> {new_version}"
commit = true
tag = true
push = false
[tool.bumpver.file_patterns]
"pyproject.toml" = [
'current_version = "{version}"',
]
"micromind/__init__.py" = [
"{version}",
]