Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
82 lines (69 loc) · 1.86 KB

File metadata and controls

82 lines (69 loc) · 1.86 KB
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
[project]
name = "python-sendparcel-cli"
version = "0.2.0"
description = "Developer CLI for python-sendparcel provider testing and debugging."
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.12"
authors = [{ name = "Dominik Kozaczko", email = "dominik@kozaczko.info" }]
keywords = ["shipping", "parcel", "cli", "sendparcel", "developer-tools"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
dependencies = [
"python-sendparcel>=0.1.1",
"typer>=0.15.0",
"rich>=13.0",
"tomli-w>=1.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.24.0",
"pytest-cov>=5.0",
"ruff>=0.9.0",
]
[project.scripts]
sendparcel = "sendparcel_cli.main:app"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/sendparcel_cli"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]
asyncio_mode = "auto"
[tool.ruff]
target-version = "py312"
line-length = 80
src = ["src", "tests"]
[tool.ruff.lint]
select = ["E", "W", "F", "I", "N", "UP", "B", "A", "SIM", "RUF"]
ignore = ["N818", "B027"]
[tool.ruff.lint.per-file-ignores]
"tests/**" = ["RUF012"]
[tool.coverage.run]
branch = true
source = ["sendparcel_cli"]
[tool.coverage.report]
show_missing = true
[tool.uv.sources]
python-sendparcel = { path = "../python-sendparcel", editable = true }
[dependency-groups]
dev = [
"mypy>=1.19.1",
]
[tool.mypy]
strict = true
python_version = "3.12"
warn_return_any = true
warn_unused_configs = true
Morty Proxy This is a proxified and sanitized view of the page, visit original site.