-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
74 lines (62 loc) · 1.58 KB
/
pyproject.toml
File metadata and controls
74 lines (62 loc) · 1.58 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[project]
name = "post-tracker"
version = "0.3.2"
description = "this is a command line tool to get tracking information about your parcels from tracking.post.ir"
authors = [
{ name = "Amir Aref", email = "amiraref808@gmail.com" }
]
dependencies = [
"httpx>=0.27.0",
"user-agent>=0.1.10",
"pydantic>=2.8.2",
# "pydymenu>=0.5.2",
"bs4>=0.0.2",
"rich>=13.8.0",
]
readme = "README.md"
requires-python = ">= 3.9"
license = "MIT"
classifiers = [
"Development Status :: 4 - Beta",
# "Typing :: Typed",
"Operating System :: POSIX",
"Framework :: AsyncIO",
"Framework :: Pydantic",
"Framework :: Pydantic :: 2",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
[project.urls]
Repository = "https://github.com/AmirAref/post-tracker"
Homepage = "https://github.com/AmirAref/post-tracker"
[project.scripts]
post-tracker = 'post_tracker.__main__:main'
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.rye]
managed = true
dev-dependencies = []
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["post_tracker"]
[tool.behavior]
use-uv = true
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"N", # pep8 naming
"I", # isort
"B", # flake8-bugbear
"C4", # flake8-comprehensions
"UP", # pyupgrade
"ARG001", # unused arguments in functions
"ASYNC", # flake8 async
"LOG", # flake8 logging
"ANN" # flake8 annotations,
]
unfixable = []
ignore = ["ANN101"]