-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (30 loc) · 1.15 KB
/
pyproject.toml
File metadata and controls
38 lines (30 loc) · 1.15 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
[build-system]
requires = ["setuptools>=64"]
build-backend = "setuptools.build_meta"
[project]
name = "lisette"
dynamic = ["version"]
description = "litellm helper"
readme = "README.md"
requires-python = ">=3.9"
license = {text = "Apache-2.0"}
authors = [{name = "AnswerDotAI", email = "support@answer.ai"}]
keywords = ['nbdev', 'jupyter', 'notebook', 'python']
classifiers = ["Natural Language :: English", "Intended Audience :: Developers", "Development Status :: 3 - Alpha", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3 :: Only"]
dependencies = ['litellm', 'numpydoc', 'toolslm>=0.3.29', 'fastcore>=1.12.40', "tenacity>=9.1.4",
]
[project.urls]
Repository = "https://github.com/AnswerDotAI/lisette"
Documentation = "https://lisette.answer.ai/"
[project.entry-points.nbdev]
lisette = "lisette._modidx:d"
[project.optional-dependencies]
dev = ['ipython', 'pycachy>=0.0.6', 'fastlite', 'nbdev', 'pillow']
[tool.setuptools.dynamic]
version = {attr = "lisette.__version__"}
[tool.setuptools.packages.find]
include = ["lisette"]
[tool.nbdev]
allowed_metadata_keys = ['solveit']
custom_sidebar = false
allowed_cell_metadata_keys = ['solveit_ai']