-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
51 lines (46 loc) · 1.34 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
[project]
name = "emd"
description = "Easy Model Deployer"
version = "0.0.0"
authors = [
{name = "Yi Yan",email = "<[email protected]>"},
{name = "Jie Tang", email="<[email protected]>"},
{name="Xuan Zhou",email="<[email protected]>"}
]
readme = "README.md"
[tool.poetry]
packages = [
{ include = "**/*", from = "src/emd", to = "emd" },
{ include = "pipeline", from = "src", to = "emd" },
{ include = "s5cmd", from = "assets", to = "emd/pipeline" }
]
exclude = [".venv"]
[tool.poetry.dependencies]
python = "^3.9"
typer = {extras = ["all"], version = "^0.13.0"}
rich = "^13.9.4"
boto3 = "^1.35.0"
questionary = "^2.0.1"
requests = "^2.26"
pydantic = "^2.9.2"
sagemaker = "^2.237.0"
langchain = "^0.3.9"
langchain-aws = "^0.2.13"
huggingface_hub = "^0.26.1"
openai = "^1.54.4"
jinja2 = "^3.1.4"
modelscope = "^1.21.1"
[tool.poetry.extras]
# optional dependencies
#cli = ["typer","rich","questionary","requests"]
#langchain = ["langchain", "langchain-aws"] # langchain required
#all = ["typer","rich","questionary","langchain", "langchain-aws","sagemaker","openai","jinja2","huggingface_hub","hf_transfer","modelscope"] # all
[tool.poetry.group.dev.dependencies]
pytest = "^8.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
emd = "emd.cli:app"
[project.scripts]
emd = "emd.cli:app"