|
[build-system]
|
|
requires = ["hatchling",]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "lite-builder"
|
|
description = "Python library for easily interacting with trained machine learning models"
|
|
license = "Apache-2.0"
|
|
version = "0.0.2"
|
|
requires-python = ">=3.8"
|
|
authors = [
|
|
{ name = "Abubakar Abid", email = "[email protected]" },
|
|
{ name = "Ali Abid", email = "[email protected]" },
|
|
{ name = "Ali Abdalla", email = "[email protected]" },
|
|
{ name = "Dawood Khan", email = "[email protected]" },
|
|
{ name = "Ahsen Khaliq", email = "[email protected]" },
|
|
{ name = "Pete Allen", email = "[email protected]" },
|
|
{ name = "Ömer Faruk Özdemir", email = "[email protected]" },
|
|
{ name = "Freddy A Boulton", email = "[email protected]" },
|
|
{ name = "Hannah Blair", email = "[email protected]" },
|
|
]
|
|
keywords = ["machine learning", "reproducibility", "visualization"]
|
|
|
|
classifiers = [
|
|
'Development Status :: 5 - Production/Stable',
|
|
]
|
|
|
|
[tool.hatch.build]
|
|
sources = ["src"]
|
|
only-packages = true
|
|
|
|
[project.entry-points.hatch]
|
|
lite_builder = "lite_builder.hooks"
|
|
|