32 lines
671 B
TOML
32 lines
671 B
TOML
[build-system]
|
|
requires = ["setuptools>=42", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.black]
|
|
line-length = 88
|
|
target-version = ['py37']
|
|
include = '\.pyi?$'
|
|
|
|
|
|
[project]
|
|
name = "aiia"
|
|
version = "0.2.1"
|
|
description = "AIIA Deep Learning Model Implementation"
|
|
readme = "README.md"
|
|
authors = [
|
|
{name = "Falko Habel", email = "falko.habel@gmx.de"}
|
|
]
|
|
license = {text = "CC BY-NC 4.0"}
|
|
dependencies = [
|
|
"torch>=2.5.0",
|
|
"numpy",
|
|
"tqdm",
|
|
"pytest",
|
|
"pillow"
|
|
]
|
|
requires-python = ">=3.10"
|
|
classifiers = [
|
|
"Programming Language :: Python :: 3",
|
|
"License :: OSI Approved :: CC BY-NC 4.0 License",
|
|
"Operating System :: OS Independent"
|
|
] |