-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (32 loc) · 967 Bytes
/
pyproject.toml
File metadata and controls
39 lines (32 loc) · 967 Bytes
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
[build-system]
requires = ["setuptools>=64"]
build-backend = "setuptools.build_meta"
[project]
name = "python-fastllm"
dynamic = ["version"]
description = ""
readme = "README.md"
requires-python = ">=3.10"
license = {text = "Apache-2.0"}
authors = [{name = "Kerem Turgutlu", email = "keremturgutlu@gmail.com"}]
keywords = ['nbdev']
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
]
dependencies = ['fastspec>=0.0.9', 'toolslm', 'pillow']
[project.urls]
Repository = "https://github.com/AnswerDotAI/fastllm"
[project.entry-points.nbdev]
fastllm = "fastllm._modidx:d"
[tool.setuptools.dynamic]
version = {attr = "fastllm.__version__"}
[tool.setuptools.packages.find]
include = ["fastllm*"]
[tool.setuptools.package-data]
fastllm = ["specs/*.yml", "specs/*.json"]
[tool.nbdev]
allowed_metadata_keys = ['solveit']
allowed_cell_metadata_keys = ['solveit_ai']
custom_sidebar = false
lib_path = "fastllm"