Skip to content

Commit d7d68a1

Browse files
committed
pyproject fix
1 parent 6fea885 commit d7d68a1

1 file changed

Lines changed: 17 additions & 10 deletions

File tree

pyproject.toml

Lines changed: 17 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="plash_cli"
6+
name = "plash_cli"
77
dynamic = ["version"]
88
description = "CLI for the Plash hosting service"
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", email = "info@fast.ai"}]
1313
keywords = ['nbdev', 'jupyter', 'notebook', 'python']
14-
classifiers = [
15-
"Programming Language :: Python :: 3",
16-
"Programming Language :: Python :: 3 :: Only",
17-
]
18-
dependencies = ["fastcore","httpx>=0.28.1","python-dotenv","pyjwt","cryptography"]
14+
classifiers = ["Natural Language :: English", "Intended Audience :: Developers", "Development Status :: 3 - Alpha", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3 :: Only"]
15+
dependencies = ['fastcore', 'httpx>=0.28.1', 'python-dotenv', 'pyjwt', 'cryptography']
1916

2017
[project.urls]
2118
Repository = "https://github.com/AnswerDotAI/plash_cli"
@@ -24,16 +21,26 @@ Documentation = "https://AnswerDotAI.github.io/plash_cli"
2421
[project.entry-points.nbdev]
2522
plash_cli = "plash_cli._modidx:d"
2623

24+
[project.optional-dependencies]
25+
dev = ['bash_kernel', 'nbdev']
26+
27+
2728
[project.scripts]
2829
plash_deploy = "plash_cli.cli:_deploy"
30+
plash_login = "plash_cli.cli:login"
31+
plash_view = "plash_cli.cli:view"
32+
plash_logs = "plash_cli.cli:_logs"
33+
plash_delete = "plash_cli.cli:_delete"
34+
plash_stop = "plash_cli.cli:_stop"
35+
plash_start = "plash_cli.cli:_start"
36+
plash_download = "plash_cli.cli:_download"
37+
plash_apps = "plash_cli.cli:_app_list"
38+
2939
[tool.setuptools.dynamic]
3040
version = {attr = "plash_cli.__version__"}
3141

3242
[tool.setuptools.packages.find]
3343
include = ["plash_cli"]
3444

35-
[project.optional-dependencies]
36-
dev = ["bash_kernel","nbdev"]
37-
3845
[tool.nbdev]
3946
custom_sidebar = false

0 commit comments

Comments
 (0)