-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
46 lines (39 loc) · 1013 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
39
40
41
42
43
44
45
46
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "mulambda"
authors = [
{ name = "Silvio Vasiljevic", email = "[email protected]" }
]
dynamic = ["version"]
description = "A Serverless Platform for Automated Machine Learning"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"dynaconf>=3.2",
"httpx>=0.24",
"fastapi>=0.100",
"uvicorn[standard]>=0.23",
"redis[hiredis]>=4.6",
]
[project.optional-dependencies]
dev = ["pytest",
"black[d]",
"ruff",
"pre-commit"
]
[project.scripts]
mulambda-companion = "mulambda.api.companion:run"
mulambda-experiment = "mulambda.api.experiment:run"
[tool.setuptools]
include-package-data = false
[tool.setuptools.packages.find]
include = ["mulambda*"]
exclude = ["assets*", "tests*"]
[tool.setuptools.dynamic]
version = { attr = "mulambda.__version__" }
[tool.ruff]
# pyflakes, pycodestyle, isort
select = ["F", "E", "W", "I001"]
target-version = "py310"