-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (35 loc) · 988 Bytes
/
pyproject.toml
File metadata and controls
41 lines (35 loc) · 988 Bytes
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
[project]
name = "nasa-cli"
version = "0.9.8"
description = "Command Line Interface made with Typer and Python for NASA API."
authors = [
{name = "Guillermo Valdes",email = "guillermo.valdes@pjecz.gob.mx"}
]
license = {text = "AGPL3"}
readme = "README.md"
requires-python = ">=3.14,<4.0"
dependencies = [
"pydantic (>=2.12.5,<3.0.0)",
"pydantic-settings (>=2.12.0,<3.0.0)",
"python-dotenv (>=1.2.1,<2.0.0)",
"requests (>=2.32.5,<3.0.0)",
"rich (>=14.2.0,<15.0.0)",
"typer (>=0.20.0,<0.21.0)",
"unidecode (>=1.4.0,<2.0.0)"
]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
packages = [{include = "nasa_cli", from = "src"}]
[tool.poetry.scripts]
nasa_cli = 'nasa_cli.app:app'
[tool.basedpyright]
typeCheckingMode = "basic"
reportCallIssue = "hint"
reportMissingImports = "warning"
reportUndefinedVariable = "warning"
exclude = ["**/tests"]
[tool.ruff]
ignore = ["F821"]
line-length = 128