-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
85 lines (79 loc) · 1.74 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
[build-system]
requires = ["setuptools>=65.0.0", "wheel >= 0.38", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "promptmeteo"
dynamic = ["version"]
description = "Enable the use of LLMs as a conventional ML model"
readme = "README.md"
authors = [{ name = "Angel Delgado", email = "[email protected]" }]
license = { file = "LICENSE" }
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
requires-python = ">=3.8"
dependencies = [
"langchain == 0.0.351",
"pydantic == 1.10.11",
"faiss-cpu == 1.7.4",
"tiktoken==0.4.0",
]
[tool.setuptools_scm]
[tool.setuptools.packages.find]
where = ["."]
[tool.black]
line-length = 80
include = '\.pyi?$'
[tool.setuptools.package-data]
"promptmeteo.prompts.templates.sp" = ["*.prompt"]
[project.optional-dependencies]
test = [
"pytest",
"coverage",
"pytest-cov",
"pytest-mock",
]
dev = [
"promptmeteo[test]",
"mkdocs",
"pre-commit",
"pip-tools",
"black",
"pylint",
"flake8",
]
docs = [
"sphinx==7.1.2",
"furo==2024.1.29",
"numpydoc==1.6.0",
"sphinxcontrib-napoleon==0.7",
"nbsphinx==0.9.3",
]
openai = [
"openai==0.27.8",
]
huggingface = [
"torch==2.0.1",
"transformers==4.31.0",
"sentence-transformers==2.2.2",
]
google = [
"google-cloud-aiplatform>=1.30.1",
]
aws = [
"boto3==1.34.23",
]
examples = [
"bumpver",
"jupyter",
"polars",
"seaborn",
"scikit-learn",
]
all = [
"promptmeteo[dev, examples, openai, huggingface, google, aws]",
]