-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (39 loc) · 1.5 KB
/
pyproject.toml
File metadata and controls
48 lines (39 loc) · 1.5 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
48
[build-system]
requires = ["setuptools>=64"]
build-backend = "setuptools.build_meta"
[project]
name = "plash_cli"
dynamic = ["version"]
description = "CLI for the Plash hosting service"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "Apache-2.0"}
authors = [{name = "Jeremy Howard", email = "info@fast.ai"}]
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', 'httpx>=0.28.1', 'python-dotenv', 'pyjwt', 'cryptography']
[project.urls]
Repository = "https://github.com/AnswerDotAI/plash_cli"
Documentation = "https://AnswerDotAI.github.io/plash_cli"
[project.entry-points.nbdev]
plash_cli = "plash_cli._modidx:d"
[project.optional-dependencies]
dev = ['bash_kernel', 'nbdev>=3']
[project.scripts]
plash_deploy = "plash_cli.cli:_deploy"
plash_login = "plash_cli.cli:login"
plash_view = "plash_cli.cli:view"
plash_logs = "plash_cli.cli:_logs"
plash_delete = "plash_cli.cli:_delete"
plash_stop = "plash_cli.cli:_stop"
plash_start = "plash_cli.cli:_start"
plash_download = "plash_cli.cli:_download"
plash_apps = "plash_cli.cli:_app_list"
[tool.setuptools.dynamic]
version = {attr = "plash_cli.__version__"}
[tool.setuptools.packages.find]
include = ["plash_cli"]
[tool.nbdev]
allowed_metadata_keys = ['solveit']
allowed_cell_metadata_keys = ['solveit_ai']
custom_sidebar = false