-
Notifications
You must be signed in to change notification settings - Fork 70
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (38 loc) · 1.35 KB
/
pyproject.toml
File metadata and controls
47 lines (38 loc) · 1.35 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
[build-system]
requires = ["setuptools>=64"]
build-backend = "setuptools.build_meta"
[project]
name = "ghapi"
dynamic = ["version"]
description = "A python client for the GitHub API"
readme = "README.md"
requires-python = ">=3.7"
license = {text = "Apache-2.0"}
authors = [{name = "Jeremy Howard", email = "info@fast.ai"}]
keywords = ['github', 'api']
classifiers = ["Natural Language :: English", "Intended Audience :: Developers", "Development Status :: 5 - Production/Stable", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3 :: Only"]
dependencies = ['fastcore>=1.12.19']
[project.urls]
Repository = "https://github.com/fastai/ghapi"
Documentation = "https://ghapi.fast.ai/"
[project.entry-points.nbdev]
ghapi = "ghapi._modidx:d"
[project.optional-dependencies]
dev = ['jsonref', 'matplotlib', 'nbclassic', 'nbdev', 'pysymbol_llm', 'llms-txt>=0.0.6']
[project.scripts]
ghapi = "ghapi.cli:ghapi"
ghpath = "ghapi.cli:ghpath"
ghraw = "ghapi.cli:ghraw"
completion-ghapi = "ghapi.cli:completion_ghapi"
gh-create-workflow = "ghapi.actions:gh_create_workflow"
[tool.setuptools.dynamic]
version = {attr = "ghapi.__version__"}
[tool.setuptools.packages.find]
include = ["ghapi"]
[tool.nbdev]
allowed_metadata_keys = ['solveit']
allowed_cell_metadata_keys = ['solveit_ai']
nbs_path = '.'
recursive = false
jupyter_hooks = true
custom_sidebar = false