-
Notifications
You must be signed in to change notification settings - Fork 323
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (37 loc) · 1.6 KB
/
Copy pathpyproject.toml
File metadata and controls
47 lines (37 loc) · 1.6 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 = "python-fasthtml"
dynamic = ["version"]
description = "The fastest way to create an HTML app"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "Apache-2.0"}
authors = [{name = "Jeremy Howard and contributors", email = "github@jhoward.fastmail.fm"}]
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>=2.2.7', 'python-dateutil', 'starlette>=1.0.1', 'oauthlib', 'itsdangerous', 'uvicorn[standard]>=0.30', 'httpx2', 'python-multipart', 'beautifulsoup4']
[project.urls]
Repository = "https://github.com/AnswerDotAI/fasthtml"
Documentation = "https://www.fastht.ml/docs/"
[project.entry-points.nbdev]
fasthtml = "fasthtml._modidx:d"
[project.optional-dependencies]
dev = ['ipython', 'lxml', 'pysym2md>=0.0.6', 'monsterui', 'PyJWT', 'fastlite']
[project.scripts]
fh_railway_link = "fasthtml.cli:railway_link"
fh_railway_deploy = "fasthtml.cli:railway_deploy"
[tool.setuptools.dynamic]
version = {attr = "fasthtml.__version__"}
[tool.setuptools.packages.find]
include = ["fasthtml"]
[tool.nbdev]
allowed_metadata_keys = ['solveit']
allowed_cell_metadata_keys = ['solveit_ai']
jupyter_hooks = true
custom_sidebar = false
lib_path = "fasthtml"
[tool.chkstyle]
skip_paths = ["_modidx.py"]
ignore = ["closing-bracket", "inefficient-multiline-signature", "inefficient-multiline-expression"]