30 lines
624 B
TOML
30 lines
624 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.1.1"
|
|
description = "AIIA Deep Learning Model Implementation"
|
|
readme = "README.md"
|
|
authors = [
|
|
{ name="Falko Habel", email="falko.habel@gmx.de" }
|
|
]
|
|
dependencies = [
|
|
"torch>=2.5.0",
|
|
"numpy",
|
|
"tqdm",
|
|
"pytest",
|
|
"pillow"
|
|
]
|
|
requires-python = ">=3.7"
|
|
classifiers = [
|
|
"Programming Language :: Python :: 3",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Operating System :: OS Independent"
|
|
] |