forked from lastmile-ai/aiconfig
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (50 loc) · 1.01 KB
/
pyproject.toml
File metadata and controls
54 lines (50 loc) · 1.01 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
51
52
53
54
[build-system]
requires = ["setuptools", "wheel"]
[project]
name = "python-aiconfig"
version = "1.1.0"
authors = [
{ name="Sarmad Qadri", email="[email protected]" },
]
description = "Python library for LastMile AI API"
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
]
dependencies = [
"requests==2.30.0",
"black",
"flake8",
"pytest",
"pydantic>=2.1",
"pybars3",
"google-generativeai",
"openai>=1.0.0",
"python-dotenv",
"huggingface_hub",
"result",
"nest_asyncio",
]
[project.urls]
"Homepage" = "https://github.com/lastmile-ai/aiconfig"
"Bug Tracker" = "https://github.com/lastmile-ai/aiconfig/issues"
# Black formatting
[tool.black]
line-length = 99
include = '\.pyi?$'
exclude = '''
/(
.eggs # exclude a few common directories in the
| .git # root of the project
| .hg
| .mypy_cache
| .tox
| venv
| _build
| buck-out
| build
| dist
)/
'''