-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
38 lines (33 loc) · 985 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.version]
path = "src/sk_serve/__init__.py"
[tool.hatch.build.targets.wheel]
packages = ["src/sk_serve"]
[project]
name = "simple_serve"
dynamic = ["version"]
dependencies = [
"fastapi",
"pandas",
"scikit-learn",
"pydantic"
]
requires-python = ">=3.12"
authors = [
{name = "Alexandros Liapatis", email = "alexandrosliapatis@gmail.com"}
]
maintainers = [
{name = "Alexandros Liapatis", email = "alexandrosliapatis@gmail.com"}
]
description = "Deployment of a Scikit-Learn model and it's column transformations with a single endpoint."
readme = "README.md"
license = {file = "LICENSE"}
[project.optional-dependencies]
dev = ["pre-commit", "pyright"]
[project.urls]
Homepage = "https://github.com/alexliap/sk_serve"
Documentation = "https://alexliap.github.io/sk_serve/"
Repository = "https://github.com/alexliap/sk_serve"
Issues = "https://github.com/alexliap/sk_serve/issues"