21 lines
462 B
TOML
21 lines
462 B
TOML
[build-system]
|
|
requires = ["setuptools", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "dermy-model"
|
|
version = "0.1.0"
|
|
description = "A Image Classification Model for classifying Moles"
|
|
authors = [{ name = "r0r5chach", email = "r0r-5chach.xyz@proton.me" }]
|
|
readme = "README.md"
|
|
license = { file = "LICENSE" }
|
|
dependencies = [
|
|
"matplotlib",
|
|
"numpy",
|
|
"tensorflow",
|
|
]
|
|
|
|
[too.setuptools]
|
|
packages = ["dermy-model"]
|
|
include_package_data = true
|