-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (33 loc) · 1.21 KB
/
pyproject.toml
File metadata and controls
43 lines (33 loc) · 1.21 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
[build-system]
requires = ["setuptools>=64"]
build-backend = "setuptools.build_meta"
[project]
name = "toolslm"
dynamic = ["version"]
description = "Tools to make language models a bit easier to use"
readme = "README.md"
requires-python = ">=3.9"
license = {text = "Apache-2.0"}
authors = [{name = "Jeremy Howard", email = "j@fast.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 = ['fastcore>=1.12.4', 'httpx', 'ghapi', 'codesigs']
[project.urls]
Repository = "https://github.com/AnswerDotAI/toolslm"
Documentation = "https://AnswerDotAI.github.io/toolslm"
[project.entry-points.nbdev]
toolslm = "toolslm._modidx:d"
[project.optional-dependencies]
dev = ['ipython']
[project.scripts]
folder2ctx = "toolslm.xml:folder2ctx_cli"
repo2ctx = "toolslm.xml:repo2ctx_cli"
[tool.setuptools.dynamic]
version = {attr = "toolslm.__version__"}
[tool.setuptools.packages.find]
include = ["toolslm"]
[tool.nbdev]
nbs_path = '.'
jupyter_hooks = true
custom_sidebar = false
allowed_cell_metadata_keys = ['solveit_ai']