-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
42 lines (36 loc) · 963 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
# model-interfaces/pyproject.toml
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
# [tool.setuptools.packages.find]
# where = ["."]
# include = ["aixplain"]
# namespaces = true
[tool.pdm.build]
package-dir = "aixplain"
includes = ["aixplain"]
[project]
name = "model-interfaces"
version = "1.0.0"
description = "A package specifying the model interfaces supported by aiXplain"
license = { text = "Apache License, Version 2.0: http://www.apache.org/licenses/LICENSE-2.0" }
dependencies = [
"kserve>=0.10.0",
"multiprocess==0.70.14",
"protobuf>=3.19.4",
"pyarrow==15.0.0",
"pydantic>=1.9.1",
"pydub>=0.25.1",
"requests>=2.28.1",
"tornado>=6.2",
"validators>=0.20.0"
]
[project.optional-dependencies]
test = [
"pytest>=7.1.2",
"sentencepiece>=0.1.96",
"torch>=1.13.1",
"transformers>=4.21.1"
]
[project.urls]
Homepage = "https://github.com/aixplain/model-interfaces"