-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathpyproject.toml
96 lines (81 loc) · 1.72 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
[project]
name = "batchflow"
version = "0.8.11"
description = "ML pipelines, model configuration and batch management"
authors = [{ name = "Roman Kh", email = "[email protected]" }]
license = {text = "Apache License 2.0"}
readme = "README.md"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering"
]
requires-python = ">=3.9"
dependencies = [
"dill>=0.3",
"numpy>=1.26",
"numba>=0.56",
"llvmlite",
"scipy>=1.9",
"tqdm>=4.19"
]
[project.optional-dependencies]
image = [
"pillow>=9.4,<11.0",
"matplotlib>=3.7"
]
research = [
"multiprocess>=0.70",
"py-nbtools>=0.9.14"
]
monitor = [
"psutil",
"pynvml"
]
nn = [
"torch>=1.13",
"torchvision>=0.14",
"einops>=0.3",
"ptflops>=0.6",
"scikit-learn>=0.21.3"
]
dev = [
"pandas>=0.24",
"pytest>=7.0",
"ruff"
]
jupyter = [
"nbformat",
"nbconvert",
"ipykernel",
"ipython",
"notebook",
"jupyter_client",
"jupyter_server",
"requests"
]
telegram = [
"pillow>=9.4,<11.0",
]
other = [
"urllib3>=1.25"
]
#--------------------------------
# BUILD
#--------------------------------
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["batchflow"]
#--------------------------------
# TEST
#--------------------------------
[tool.pytest.ini_options]
pythonpath = ["."]