-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (47 loc) · 1.01 KB
/
pyproject.toml
File metadata and controls
51 lines (47 loc) · 1.01 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
[build-system]
requires = ["setuptools>=68", "setuptools_scm[toml]>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "pdiff"
requires-python = ">=3.8"
version = "0.0.1"
authors = [
]
description = "train profile-to-HCI-image generative AI"
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
'accelerate == 0.30.1',
'black',
'bitsandbytes',
'cellpose',
'datasets == 2.14.6',
'diffusers == 0.22.0',
'ipython',
'ipywidgets',
'jupyterlab',
'mahotas',
'matplotlib',
'numpy',
'pandas',
'torch',
'scipy',
'scikit-image',
'tensorboard == 2.12.1',
'tifffile',
'torchvision',
'tqdm',
'transformers',
'ruff',
'sphinx',
'sphinx-rtd-theme',
'pytest',
]
# Enables the usage of setuptools_scm
#[tool.setuptools_scm]
#[project.urls]