Skip to content

Commit 221db12

Browse files
committed
pyproject fix
1 parent 2616c40 commit 221db12

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

pyproject.toml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,16 @@ requires = ["setuptools>=64"]
33
build-backend = "setuptools.build_meta"
44

55
[project]
6-
name="python-fasthtml"
6+
name = "python-fasthtml"
77
dynamic = ["version"]
88
description = "The fastest way to create an HTML app"
99
readme = "README.md"
10-
requires-python=">=3.10"
10+
requires-python = ">=3.10"
1111
license = {text = "Apache-2.0"}
1212
authors = [{name = "Jeremy Howard and contributors", email = "[email protected]"}]
1313
keywords = ['nbdev', 'jupyter', 'notebook', 'python']
14-
classifiers = [
15-
"Programming Language :: Python :: 3",
16-
"Programming Language :: Python :: 3 :: Only",
17-
]
18-
dependencies = ["fastcore>=1.10.0","python-dateutil","starlette>0.33","oauthlib","itsdangerous","uvicorn[standard]>=0.30","httpx","fastlite>=0.1.1","python-multipart","beautifulsoup4"]
14+
classifiers = ["Natural Language :: English", "Intended Audience :: Developers", "Development Status :: 3 - Alpha", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3 :: Only"]
15+
dependencies = ['fastcore>=1.10.0', 'python-dateutil', 'starlette>0.33', 'oauthlib', 'itsdangerous', 'uvicorn[standard]>=0.30', 'httpx', 'fastlite>=0.1.1', 'python-multipart', 'beautifulsoup4']
1916

2017
[project.urls]
2118
Repository = "https://github.com/AnswerDotAI/fasthtml"
@@ -24,17 +21,20 @@ Documentation = "https://www.fastht.ml/docs/"
2421
[project.entry-points.nbdev]
2522
fasthtml = "fasthtml._modidx:d"
2623

24+
[project.optional-dependencies]
25+
dev = ['ipython', 'lxml', 'pysymbol_llm', 'monsterui', 'PyJWT']
26+
27+
2728
[project.scripts]
2829
fh_railway_link = "fasthtml.cli:railway_link"
30+
fh_railway_deploy = "fasthtml.cli:railway_deploy"
31+
2932
[tool.setuptools.dynamic]
3033
version = {attr = "fasthtml.__version__"}
3134

3235
[tool.setuptools.packages.find]
3336
include = ["fasthtml"]
3437

35-
[project.optional-dependencies]
36-
dev = ["ipython","lxml","pysymbol_llm","monsterui","PyJWT"]
37-
3838
[tool.nbdev]
3939
jupyter_hooks = true
4040
custom_sidebar = false

0 commit comments

Comments
 (0)