You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
438 B
21 lines
438 B
[build-system]
|
|
requires = ["setuptools>=45", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "style-transfer-ai"
|
|
version = "0.1.0"
|
|
description = "A style transfer AI tool using neural networks"
|
|
authors = [
|
|
{name = "Your Name", email = "your.email@example.com"},
|
|
]
|
|
dependencies = [
|
|
"torch>=2.0.0",
|
|
"torchvision>=0.15.0",
|
|
"numpy>=1.24.0",
|
|
"Pillow>=9.0.0",
|
|
"scipy>=1.10.0",
|
|
"PyYAML>=6.0.0",
|
|
]
|
|
|