-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (46 loc) · 1.5 KB
/
Copy pathpyproject.toml
File metadata and controls
53 lines (46 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
49
50
51
52
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ploneapi-shell"
version = "0.1.23"
description = "Interactive shell and CLI for exploring Plone REST API sites"
readme = "README.md"
requires-python = ">=3.8"
authors = [
{name = "David Bain", email = "david.bain@incrementic.com"}
]
keywords = ["plone", "api", "rest", "cli", "shell", "explorer"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"httpx>=0.27.0",
"typer>=0.12.3",
"rich>=13.7.1",
"prompt-toolkit>=3.0.48",
"streamlit>=1.28.0",
"thefuzz>=0.19.0",
"fastapi>=0.115.0",
"uvicorn>=0.30.0",
]
[project.scripts]
ploneapi-shell = "ploneapi_shell.cli:APP"
[project.urls]
Homepage = "https://github.com/pigeonflight/ploneapi-shell"
Documentation = "https://github.com/pigeonflight/ploneapi-shell#readme"
Repository = "https://github.com/pigeonflight/ploneapi-shell"
Issues = "https://github.com/pigeonflight/ploneapi-shell/issues"
[tool.setuptools]
packages = ["ploneapi_shell"]
[tool.setuptools.package-data]
ploneapi_shell = []