wry 0.0.1.dev0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,43 @@
1
+ Metadata-Version: 2.4
2
+ Name: wry
3
+ Version: 0.0.1.dev0
4
+ Summary: A DRY approach to building type-safe CLI applications with Pydantic and Click
5
+ Author-email: Tyler House <26489166+tahouse@users.noreply.github.com>
6
+ License: MIT
7
+ Project-URL: Homepage, https://github.com/tahouse/wry
8
+ Project-URL: Repository, https://github.com/tahouse/wry
9
+ Project-URL: Issues, https://github.com/tahouse/wry/issues
10
+ Project-URL: Documentation, https://github.com/tahouse/wry#readme
11
+ Keywords: cli,pydantic,click,dry,configuration,type-safe
12
+ Classifier: Development Status :: 1 - Planning
13
+ Classifier: Intended Audience :: Developers
14
+ Classifier: License :: OSI Approved :: MIT License
15
+ Classifier: Programming Language :: Python :: 3
16
+ Classifier: Programming Language :: Python :: 3.10
17
+ Classifier: Programming Language :: Python :: 3.11
18
+ Classifier: Programming Language :: Python :: 3.12
19
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
20
+ Classifier: Topic :: System :: System Shells
21
+ Classifier: Topic :: Utilities
22
+ Requires-Python: >=3.10
23
+ Description-Content-Type: text/markdown
24
+ Requires-Dist: click>=8.0
25
+ Requires-Dist: pydantic>=2.0
26
+ Requires-Dist: annotated-types>=0.5.0
27
+ Requires-Dist: pydantic-core>=2.0
28
+ Provides-Extra: dev
29
+ Requires-Dist: pytest>=6.0; extra == "dev"
30
+ Requires-Dist: pytest-cov; extra == "dev"
31
+ Requires-Dist: pytest-xdist; extra == "dev"
32
+ Requires-Dist: ruff; extra == "dev"
33
+ Requires-Dist: mypy; extra == "dev"
34
+ Requires-Dist: build; extra == "dev"
35
+ Requires-Dist: twine; extra == "dev"
36
+ Requires-Dist: setuptools-scm>=8.0; extra == "dev"
37
+ Requires-Dist: pre-commit; extra == "dev"
38
+ Requires-Dist: safety; extra == "dev"
39
+ Requires-Dist: bandit[toml]; extra == "dev"
40
+ Provides-Extra: test
41
+ Requires-Dist: pytest>=6.0; extra == "test"
42
+ Requires-Dist: pytest-cov; extra == "test"
43
+ Requires-Dist: pytest-xdist; extra == "test"
@@ -0,0 +1,129 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61.0", "wheel", "setuptools-scm>=8.0"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "wry"
7
+ dynamic = ["version"]
8
+ description = "A DRY approach to building type-safe CLI applications with Pydantic and Click"
9
+ authors = [{name = "Tyler House", email = "26489166+tahouse@users.noreply.github.com"}]
10
+ readme = "README.md"
11
+ license = {text = "MIT"}
12
+ requires-python = ">=3.10"
13
+ classifiers = [
14
+ "Development Status :: 1 - Planning",
15
+ "Intended Audience :: Developers",
16
+ "License :: OSI Approved :: MIT License",
17
+ "Programming Language :: Python :: 3",
18
+ "Programming Language :: Python :: 3.10",
19
+ "Programming Language :: Python :: 3.11",
20
+ "Programming Language :: Python :: 3.12",
21
+ "Topic :: Software Development :: Libraries :: Python Modules",
22
+ "Topic :: System :: System Shells",
23
+ "Topic :: Utilities",
24
+ ]
25
+ keywords = ["cli", "pydantic", "click", "dry", "configuration", "type-safe"]
26
+ dependencies = [
27
+ "click>=8.0",
28
+ "pydantic>=2.0",
29
+ "annotated-types>=0.5.0",
30
+ "pydantic-core>=2.0",
31
+ ]
32
+
33
+ [project.optional-dependencies]
34
+ dev = [
35
+ "pytest>=6.0",
36
+ "pytest-cov",
37
+ "pytest-xdist", # Parallel test execution
38
+ "ruff",
39
+ "mypy",
40
+ "build",
41
+ "twine",
42
+ "setuptools-scm>=8.0", # Version management from git tags
43
+ "pre-commit", # Pre-commit hooks for quality gates
44
+ "safety", # Security vulnerability scanning
45
+ "bandit[toml]", # Security linting
46
+ ]
47
+ test = [
48
+ "pytest>=6.0",
49
+ "pytest-cov",
50
+ "pytest-xdist",
51
+ ]
52
+
53
+ [project.urls]
54
+ Homepage = "https://github.com/tahouse/wry"
55
+ Repository = "https://github.com/tahouse/wry"
56
+ Issues = "https://github.com/tahouse/wry/issues"
57
+ Documentation = "https://github.com/tahouse/wry#readme"
58
+
59
+ [tool.setuptools.packages.find]
60
+ where = ["."]
61
+
62
+ [tool.setuptools.package-data]
63
+ wry = ["py.typed"]
64
+
65
+ [tool.ruff]
66
+ target-version = "py310"
67
+ line-length = 120
68
+
69
+
70
+ [tool.ruff.lint]
71
+ select = [
72
+ "E", # pycodestyle errors
73
+ "W", # pycodestyle warnings
74
+ "F", # pyflakes
75
+ "I", # isort
76
+ "B", # flake8-bugbear
77
+ "C4", # flake8-comprehensions
78
+ "UP", # pyupgrade
79
+ ]
80
+ ignore = []
81
+
82
+ [tool.mypy]
83
+ python_version = "3.10"
84
+ warn_return_any = true
85
+ warn_unused_configs = true
86
+ disallow_untyped_defs = true
87
+ disallow_incomplete_defs = true
88
+ check_untyped_defs = true
89
+ disallow_untyped_decorators = true
90
+ no_implicit_optional = true
91
+ warn_redundant_casts = true
92
+ warn_unused_ignores = true
93
+ warn_no_return = true
94
+ warn_unreachable = true
95
+ strict_equality = true
96
+
97
+ [tool.pytest.ini_options]
98
+ testpaths = ["tests"]
99
+ python_files = ["test_*.py"]
100
+ python_classes = ["Test*"]
101
+ python_functions = ["test_*"]
102
+ addopts = [
103
+ "--strict-markers",
104
+ "--strict-config",
105
+ "--verbose",
106
+ "--tb=short",
107
+ "--cov=wry",
108
+ "--cov-report=term-missing",
109
+ "--cov-report=html",
110
+ "--cov-report=xml",
111
+ "--cov-branch",
112
+ "--cov-fail-under=100",
113
+ ]
114
+ markers = [
115
+ "slow: marks tests as slow (deselect with '-m \"not slow\"')",
116
+ "integration: marks tests as integration tests",
117
+ ]
118
+ filterwarnings = [
119
+ "error",
120
+ "ignore::UserWarning",
121
+ "ignore::DeprecationWarning",
122
+ ]
123
+
124
+ [tool.setuptools_scm]
125
+ # Get version from git tags
126
+ fallback_version = "0.0.1.dev0"
127
+ # Configure version string that includes git info in metadata
128
+ version_scheme = "post-release"
129
+ local_scheme = "no-local-version"
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,43 @@
1
+ Metadata-Version: 2.4
2
+ Name: wry
3
+ Version: 0.0.1.dev0
4
+ Summary: A DRY approach to building type-safe CLI applications with Pydantic and Click
5
+ Author-email: Tyler House <26489166+tahouse@users.noreply.github.com>
6
+ License: MIT
7
+ Project-URL: Homepage, https://github.com/tahouse/wry
8
+ Project-URL: Repository, https://github.com/tahouse/wry
9
+ Project-URL: Issues, https://github.com/tahouse/wry/issues
10
+ Project-URL: Documentation, https://github.com/tahouse/wry#readme
11
+ Keywords: cli,pydantic,click,dry,configuration,type-safe
12
+ Classifier: Development Status :: 1 - Planning
13
+ Classifier: Intended Audience :: Developers
14
+ Classifier: License :: OSI Approved :: MIT License
15
+ Classifier: Programming Language :: Python :: 3
16
+ Classifier: Programming Language :: Python :: 3.10
17
+ Classifier: Programming Language :: Python :: 3.11
18
+ Classifier: Programming Language :: Python :: 3.12
19
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
20
+ Classifier: Topic :: System :: System Shells
21
+ Classifier: Topic :: Utilities
22
+ Requires-Python: >=3.10
23
+ Description-Content-Type: text/markdown
24
+ Requires-Dist: click>=8.0
25
+ Requires-Dist: pydantic>=2.0
26
+ Requires-Dist: annotated-types>=0.5.0
27
+ Requires-Dist: pydantic-core>=2.0
28
+ Provides-Extra: dev
29
+ Requires-Dist: pytest>=6.0; extra == "dev"
30
+ Requires-Dist: pytest-cov; extra == "dev"
31
+ Requires-Dist: pytest-xdist; extra == "dev"
32
+ Requires-Dist: ruff; extra == "dev"
33
+ Requires-Dist: mypy; extra == "dev"
34
+ Requires-Dist: build; extra == "dev"
35
+ Requires-Dist: twine; extra == "dev"
36
+ Requires-Dist: setuptools-scm>=8.0; extra == "dev"
37
+ Requires-Dist: pre-commit; extra == "dev"
38
+ Requires-Dist: safety; extra == "dev"
39
+ Requires-Dist: bandit[toml]; extra == "dev"
40
+ Provides-Extra: test
41
+ Requires-Dist: pytest>=6.0; extra == "test"
42
+ Requires-Dist: pytest-cov; extra == "test"
43
+ Requires-Dist: pytest-xdist; extra == "test"
@@ -0,0 +1,6 @@
1
+ pyproject.toml
2
+ wry.egg-info/PKG-INFO
3
+ wry.egg-info/SOURCES.txt
4
+ wry.egg-info/dependency_links.txt
5
+ wry.egg-info/requires.txt
6
+ wry.egg-info/top_level.txt
@@ -0,0 +1,22 @@
1
+ click>=8.0
2
+ pydantic>=2.0
3
+ annotated-types>=0.5.0
4
+ pydantic-core>=2.0
5
+
6
+ [dev]
7
+ pytest>=6.0
8
+ pytest-cov
9
+ pytest-xdist
10
+ ruff
11
+ mypy
12
+ build
13
+ twine
14
+ setuptools-scm>=8.0
15
+ pre-commit
16
+ safety
17
+ bandit[toml]
18
+
19
+ [test]
20
+ pytest>=6.0
21
+ pytest-cov
22
+ pytest-xdist
@@ -0,0 +1 @@
1
+ dist