-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (26 loc) · 1.12 KB
/
pyproject.toml
File metadata and controls
32 lines (26 loc) · 1.12 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
[build-system]
requires = ["setuptools>=64"]
build-backend = "setuptools.build_meta"
[project]
name = "fh-pyinstrument"
dynamic = ["version"]
description = "Using pyinstrument to profile FastHTML apps"
readme = "README.md"
requires-python = ">=3.11"
license = {text = "Apache-2.0"}
authors = [{name = "Daniel Roy Greenfeld and Answer.AI", email = "info@fast.ai"}]
keywords = ['nbdev', 'jupyter', 'notebook', 'python', 'fasthtml']
classifiers = ["Natural Language :: English", "Intended Audience :: Developers", "Development Status :: 3 - Alpha", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3 :: Only"]
dependencies = ['python-fasthtml', 'pyinstrument', 'fastcore']
[project.urls]
Repository = "https://github.com/answerdotai/fh-pyinstrument"
Documentation = "https://answerdotai.github.io/fh-pyinstrument"
[project.entry-points.nbdev]
fh_pyinstrument = "fh_pyinstrument._modidx:d"
[tool.setuptools.dynamic]
version = {attr = "fh_pyinstrument.__version__"}
[tool.setuptools.packages.find]
include = ["fh_pyinstrument"]
[tool.nbdev]
allowed_metadata_keys = ['solveit']
allowed_cell_metadata_keys = ['solveit_ai']