-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (28 loc) · 1.02 KB
/
pyproject.toml
File metadata and controls
32 lines (28 loc) · 1.02 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
[tool.poetry]
name = "scalar_doc"
version = "0.1.8"
description = "Render beautiful, customizable OpenAPI documentation with Scalar — directly from Python."
authors = ["Iago B. Almeida <iago.borba.almeida@maistodos.com.br>"]
license = "MIT"
readme = "README.md"
packages = [{ include = "scalar_doc" }]
homepage = "https://iagobalmeida.github.io/scalar_doc"
repository = "https://github.com/iagobalmeida/scalar_doc"
keywords = ["openapi", "documentation", "scalar", "fastapi", "cli", "sdk"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Topic :: Software Development :: Documentation",
"Programming Language :: Python :: 3.12",
]
[tool.poetry.dependencies]
python = "^3.12"
[tool.poetry.group.dev.dependencies]
fastapi = { extras = ["standard"], version = "^0.115.12" }
pytest = "^8.3.5"
[tool.poetry.scripts]
scalar_doc = "scalar_doc.cli:main"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"