File size: 820 Bytes
341c967 | 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>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "neuroname"
version = "0.1.0"
description = "Domain-specific AI architecture for creative name generation using character-level conditional VAE with phonotactic awareness"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.9"
dependencies = [
"torch>=2.0.0",
"numpy>=1.24.0",
"pyyaml>=6.0",
"tqdm>=4.65.0",
]
[project.optional-dependencies]
train = [
"datasets>=2.14.0",
"matplotlib>=3.7.0",
"tensorboard>=2.14.0",
]
dev = [
"pytest>=7.0.0",
"black>=23.0.0",
"jupyter>=1.0.0",
]
all = [
"neuroname[train,dev]",
]
[tool.setuptools.packages.find]
where = ["."]
include = ["neuroname*"]
[tool.black]
line-length = 100
target-version = ["py39"]
|