-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
89 lines (81 loc) · 2.2 KB
/
pyproject.toml
File metadata and controls
89 lines (81 loc) · 2.2 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
[project]
name = "t3api-utils"
version = "1.5.0"
description = "Utility functions and helpers for the T3 API ecosystem"
authors = [{ name = "Matt Frisbie", email = "matt@classvsoftware.com" }]
readme = "README.md"
license = "GPL-3.0-only"
requires-python = ">=3.12"
keywords = ["t3", "metrc", "utils", "helpers", "track and trace"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
]
dependencies = [
"certifi >=2023.7.22",
"python-dotenv >=1.0.0",
"rich>=13.0.0",
"questionary >=2.0.0",
"typer>=0.16.0",
"duckdb>=1.3.0",
"pyarrow>=17.0.0",
"httpx>=0.25.0",
"textual>=6.0.0",
"pyotp>=2.8.0",
]
[project.optional-dependencies]
dev = [
"mypy>=1.14.1",
"pytest>=8.3.5",
"pytest-asyncio>=1.2.0",
"mkdocs>=1.6.0",
"mkdocs-material>=9.0.0",
"mkdocstrings[python]>=0.27.0",
]
[project.urls]
Homepage = "https://github.com/classvsoftware/t3api-python-utils"
Documentation = "https://classvsoftware.github.io/t3api-python-utils/"
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["t3api_utils*"]
exclude = ["tests*", "tmp*", "output*", "interfaces*"]
[tool.mypy]
files = ["t3api_utils", "tests"]
warn_unused_configs = true
warn_redundant_casts = true
warn_unused_ignores = true
strict_equality = true
extra_checks = true
check_untyped_defs = true
disallow_subclassing_any = true
disallow_untyped_decorators = true
disallow_any_generics = true
[[tool.mypy.overrides]]
module = "t3api_utils.*"
warn_unused_ignores = true
strict_equality = true
extra_checks = true
check_untyped_defs = true
disallow_subclassing_any = true
disallow_untyped_decorators = true
disallow_any_generics = true
disallow_untyped_calls = true
disallow_incomplete_defs = true
disallow_untyped_defs = true
no_implicit_reexport = true
warn_return_any = true
[dependency-groups]
dev = [
"mypy>=1.14.1",
"pytest>=8.3.5",
"pytest-asyncio>=1.2.0",
"mkdocs>=1.6.0",
"mkdocs-material>=9.0.0",
"mkdocstrings[python]>=0.27.0",
]
[tool.pytest.ini_options]
asyncio_mode = "auto"