-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
41 lines (38 loc) · 1.06 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "binary-diffusion-tabular"
version = "0.1.0"
description = "Binary diffusion for tabular data"
readme = "README.md"
license = {text = "MIT"}
authors = [
{name = "Vitaliy Kinakh", email = "[email protected]"}
]
dependencies = [
"accelerate==1.1.1",
"ema-pytorch==0.7.6",
"numpy==2.1.3",
"pandas==2.2.3",
"PyYAML==6.0.2",
"scikit-learn==1.5.2",
"torch==2.5.0",
"torchmetrics==1.6.0",
"tqdm==4.67.1",
"wandb==0.19.0"
]
classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering :: Artificial Intelligence"
]
requires-python = ">=3.10"
[tool.setuptools]
packages = ["binary_diffusion_tabular"]
[project.urls]
Homepage = "https://github.com/vkinakh/binary-diffusion-tabular"