-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
37 lines (32 loc) · 974 Bytes
/
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
[project]
name = "text-sed"
description = "A PyTorch implementation of Self-conditioned Embedding Diffusion"
authors = [{name = "Jonathan Tow", email = "[email protected]"}]
dynamic = ["version"]
requires-python = ">=3.8"
keywords = ["nlp", "pytorch", "machine-learning", "text-generation"]
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
]
dependencies = [
"einops",
"torch>=1.12.1",
"transformers",
]
[project.optional-dependencies]
dev = ["black", "flake8", "isort"]
train = ["datasets", "omegaconf", "wandb", "tqdm"]
[build-system]
requires = ["setuptools>=64", "setuptools_scm[toml]>=6.2", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["text_sed"]
include = ["text_sed*"]
[tool.black]
line-length = 101
[tool.isort]
profile = "black"