-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (43 loc) · 1.04 KB
/
pyproject.toml
File metadata and controls
50 lines (43 loc) · 1.04 KB
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
[project]
name = "llmcompiler"
version = "2.0.1"
description = "LLMCompiler"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"langgraph>=1.0.1",
"langchain>=1.0.2",
"langchain-openai>=1.0.1",
"pandas>=2.3.3",
"grandalf>=0.8",
]
authors = [
{name = "Yc-Ma", email = "yanchaoma@foxmail.com"},
]
license = {text = "Apache-2.0"}
keywords = [
"LLMCompiler",
"Agent",
"Natural Language Processing",
"LLM",
"Machine Learning",
"AI",
"Compiler",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
[tool.setuptools.packages.find]
include = ["llmcompiler*"]
exclude = ["images*", "script*", "test*", "docs*"]
[project.urls]
Homepage = "https://github.com/crazyyanchao/llmcompiler"
[dependency-groups]
dev = [
"python-dotenv>=1.2.1",
]