-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
54 lines (49 loc) · 1.22 KB
/
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
47
48
49
50
51
52
53
54
[project]
name = "aiomodelz"
dynamic = ["version"]
description = "machine learning models"
authors = [
{ name = "Teddy Xinyuan Chen", email = "45612704+tddschn@users.noreply.github.com" },
{ name = "TensorChord", email = "modelz-support@tensorchord.ai" },
]
keywords = ["machine learning", "deep learning"]
classifiers = [
"Environment :: GPU",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"msgpack>=1.0.4",
"typer[all]>=0.7.0",
"rich>=12.6.0",
"aiohttp>=3.8.4",
]
requires-python = ">=3.7"
readme = "README.md"
license = { text = "Apache-2.0" }
[build-system]
requires = ["pdm-pep517>=1.0"]
build-backend = "pdm.pep517.api"
[project.scripts]
modelz = "modelz.cmd:main"
[tool.pdm]
[tool.pdm.version]
source = "scm"
write_to = "modelz/__version__.py"
write_template = "__version__ = '{}'"
[tool.pdm.scripts]
black = "black --check modelz"
ruff = "ruff check ."
lint = { composite = ["black", "ruff"] }
[tool.pdm.dev-dependencies]
lint = ["ruff>=0.0.252", "black>=23.1.0"]
test = ["pytest>=7.2.1"]
dev = [
"ipython>=7.34.0",
"ipykernel>=6.16.2",
]
[tool.ruff]
line-length = 188
select = ["E", "F", "B"]
[tool.black]
line-length = 188