depsdev 0.0.1__py3-none-any.whl

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.
depsdev/__init__.py ADDED
File without changes
depsdev/__main__.py ADDED
@@ -0,0 +1,14 @@
1
+ from __future__ import annotations
2
+
3
+
4
+ def main(argv: list[str] | None = None) -> int:
5
+ import argparse
6
+
7
+ parser = argparse.ArgumentParser()
8
+ args = parser.parse_args(argv)
9
+ print(f"Arguments: {vars(args)=}")
10
+ return 0
11
+
12
+
13
+ if __name__ == "__main__":
14
+ raise SystemExit(main())
depsdev/_version.py ADDED
@@ -0,0 +1,21 @@
1
+ # file generated by setuptools-scm
2
+ # don't change, don't track in version control
3
+
4
+ __all__ = ["__version__", "__version_tuple__", "version", "version_tuple"]
5
+
6
+ TYPE_CHECKING = False
7
+ if TYPE_CHECKING:
8
+ from typing import Tuple
9
+ from typing import Union
10
+
11
+ VERSION_TUPLE = Tuple[Union[int, str], ...]
12
+ else:
13
+ VERSION_TUPLE = object
14
+
15
+ version: str
16
+ __version__: str
17
+ __version_tuple__: VERSION_TUPLE
18
+ version_tuple: VERSION_TUPLE
19
+
20
+ __version__ = version = '0.0.1'
21
+ __version_tuple__ = version_tuple = (0, 0, 1)
depsdev/py.typed ADDED
File without changes
@@ -0,0 +1,56 @@
1
+ Metadata-Version: 2.4
2
+ Name: depsdev
3
+ Version: 0.0.1
4
+ Summary: Python wrapper for https://deps.dev/ API
5
+ Project-URL: Documentation, https://github.com/FlavioAmurrioCS/depsdev#readme
6
+ Project-URL: Issues, https://github.com/FlavioAmurrioCS/depsdev/issues
7
+ Project-URL: Source, https://github.com/FlavioAmurrioCS/depsdev
8
+ Author-email: Flavio Amurrio <25621374+FlavioAmurrioCS@users.noreply.github.com>
9
+ License-Expression: MIT
10
+ License-File: LICENSE.txt
11
+ Classifier: Development Status :: 4 - Beta
12
+ Classifier: Programming Language :: Python
13
+ Classifier: Programming Language :: Python :: 3.9
14
+ Classifier: Programming Language :: Python :: 3.10
15
+ Classifier: Programming Language :: Python :: 3.11
16
+ Classifier: Programming Language :: Python :: 3.12
17
+ Classifier: Programming Language :: Python :: 3.13
18
+ Classifier: Programming Language :: Python :: 3.14
19
+ Classifier: Programming Language :: Python :: Implementation :: CPython
20
+ Classifier: Programming Language :: Python :: Implementation :: PyPy
21
+ Requires-Python: >=3.9
22
+ Provides-Extra: tests
23
+ Requires-Dist: pytest; extra == 'tests'
24
+ Requires-Dist: tomli; (python_version < '3.11') and extra == 'tests'
25
+ Provides-Extra: types
26
+ Requires-Dist: mypy; extra == 'types'
27
+ Requires-Dist: pyrefly; extra == 'types'
28
+ Requires-Dist: pyright[nodejs]; extra == 'types'
29
+ Requires-Dist: pytest; extra == 'types'
30
+ Requires-Dist: tomli; (python_version < '3.11') and extra == 'types'
31
+ Requires-Dist: ty; extra == 'types'
32
+ Requires-Dist: typing-extensions; extra == 'types'
33
+ Description-Content-Type: text/markdown
34
+
35
+ # depsdev
36
+
37
+ [![PyPI - Version](https://img.shields.io/pypi/v/depsdev.svg)](https://pypi.org/project/depsdev)
38
+ [![PyPI - Python Version](https://img.shields.io/pypi/pyversions/depsdev.svg)](https://pypi.org/project/depsdev)
39
+ [![pre-commit.ci status](https://results.pre-commit.ci/badge/github/FlavioAmurrioCS/depsdev/main.svg)](https://results.pre-commit.ci/latest/github/FlavioAmurrioCS/depsdev/main)
40
+
41
+ -----
42
+
43
+ ## Table of Contents
44
+
45
+ - [Installation](#installation)
46
+ - [License](#license)
47
+
48
+ ## Installation
49
+
50
+ ```console
51
+ pip install depsdev
52
+ ```
53
+
54
+ ## License
55
+
56
+ `depsdev` is distributed under the terms of the [MIT](https://spdx.org/licenses/MIT.html) license.
@@ -0,0 +1,9 @@
1
+ depsdev/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
+ depsdev/__main__.py,sha256=IezDkTm-_ae5VyuQJRMmBjc-imTcqEX6picfoiLq0vE,290
3
+ depsdev/_version.py,sha256=vgltXBYF55vNcC2regxjGN0_cbebmm8VgcDdQaDapWQ,511
4
+ depsdev/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
5
+ depsdev-0.0.1.dist-info/METADATA,sha256=AIPgvmTTFPJrr1C2Y4nN_hxrf9CXAGzQgm_xhGO1Id8,2165
6
+ depsdev-0.0.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
7
+ depsdev-0.0.1.dist-info/entry_points.txt,sha256=yVCFtXda2xhj-7SmKEw7ynA_8QJrmKi9tORDw2uco9Q,50
8
+ depsdev-0.0.1.dist-info/licenses/LICENSE.txt,sha256=jpNC8_qYxlJENCgo7GKooe4rsIx-t_wIWl7ngr03F2k,1131
9
+ depsdev-0.0.1.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.27.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ depsdev = depsdev.__main__:main
@@ -0,0 +1,9 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025-present Flavio Amurrio <25621374+FlavioAmurrioCS@users.noreply.github.com>
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
6
+
7
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
8
+
9
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.