-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (33 loc) · 785 Bytes
/
pyproject.toml
File metadata and controls
39 lines (33 loc) · 785 Bytes
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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "modelcub"
version = "0.0.2"
description = "Train and deploy AI models in minutes — zero config."
readme = "README.md"
requires-python = ">=3.9"
license = {text = "MIT"}
authors = [{name = "Seif Boukerdenna"}]
dependencies = [
"click>=8.1.0",
]
[project.scripts]
modelcub = "modelcub.cli:main"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[project.optional-dependencies]
ui = [
"fastapi>=0.104.0,<0.105.0",
"uvicorn[standard]>=0.24.0,<0.25.0",
"websockets>=12.0,<13.0",
"python-multipart>=0.0.6,<0.1.0",
]
dev = [
"black>=23.0.0",
"isort>=5.12.0",
"mypy>=1.7.0",
"pylint>=3.0.0",
]