dependence 1.0.1__tar.gz → 1.0.3__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: dependence
3
- Version: 1.0.1
3
+ Version: 1.0.3
4
4
  Summary: A dependency management tool for python projects
5
5
  Project-URL: Homepage, https://dependence.enorganic.org
6
6
  Author-email: david@belais.me
@@ -47,8 +47,8 @@ requirements.txt, pyproject.toml, setup.cfg, or tox.ini files. The output
47
47
  format matches that of `pip freeze`, but only lists dependencies of indicated
48
48
  packages and/or editable project locations.
49
49
 
50
- You may refer to the [`dependence freeze` CLI reference](https://dependence.enorganic.org/cli.md#dependence-freeze)
51
- and/or [`dependence.freeze` API reference](https://dependence.enorganic.org/api/freeze.md) for details
50
+ You may refer to the [`dependence freeze` CLI reference](https://dependence.enorganic.org/cli/#dependence-freeze)
51
+ and/or [`dependence.freeze` API reference](https://dependence.enorganic.org/api/freeze/) for details
52
52
  concerning this command/module, related options, and more complex use case
53
53
  examples.
54
54
 
@@ -173,7 +173,7 @@ updated? By design. Here are the rules `dependence update` adheres to:
173
173
  - If your requirement is unversioned, we don't touch it, of course. This is
174
174
  why you didn't see any change for "pip".
175
175
 
176
- You may refer to the [`dependence update` CLI reference](https://dependence.enorganic.org/cli.md#dependence-update)
177
- and/or [`dependence.update` API reference](https://dependence.enorganic.org/api/update.md) for details
176
+ You may refer to the [`dependence update` CLI reference](https://dependence.enorganic.org/cli/#dependence-update)
177
+ and/or [`dependence.update` API reference](https://dependence.enorganic.org/api/update/) for details
178
178
  concerning this command/module, related options, and more complex use
179
179
  cases/examples.
@@ -30,8 +30,8 @@ requirements.txt, pyproject.toml, setup.cfg, or tox.ini files. The output
30
30
  format matches that of `pip freeze`, but only lists dependencies of indicated
31
31
  packages and/or editable project locations.
32
32
 
33
- You may refer to the [`dependence freeze` CLI reference](https://dependence.enorganic.org/cli.md#dependence-freeze)
34
- and/or [`dependence.freeze` API reference](https://dependence.enorganic.org/api/freeze.md) for details
33
+ You may refer to the [`dependence freeze` CLI reference](https://dependence.enorganic.org/cli/#dependence-freeze)
34
+ and/or [`dependence.freeze` API reference](https://dependence.enorganic.org/api/freeze/) for details
35
35
  concerning this command/module, related options, and more complex use case
36
36
  examples.
37
37
 
@@ -156,7 +156,7 @@ updated? By design. Here are the rules `dependence update` adheres to:
156
156
  - If your requirement is unversioned, we don't touch it, of course. This is
157
157
  why you didn't see any change for "pip".
158
158
 
159
- You may refer to the [`dependence update` CLI reference](https://dependence.enorganic.org/cli.md#dependence-update)
160
- and/or [`dependence.update` API reference](https://dependence.enorganic.org/api/update.md) for details
159
+ You may refer to the [`dependence update` CLI reference](https://dependence.enorganic.org/cli/#dependence-update)
160
+ and/or [`dependence.update` API reference](https://dependence.enorganic.org/api/update/) for details
161
161
  concerning this command/module, related options, and more complex use
162
162
  cases/examples.
@@ -537,9 +537,9 @@ def main() -> None:
537
537
  type=str,
538
538
  help=(
539
539
  "If provided, an extra which consolidates the requirements "
540
- "for all other extras will be added/updated to setup.cfg "
540
+ "for all other extras will be added/updated to pyproject.toml "
541
541
  "or setup.cfg (this argument is ignored for "
542
- "requirements.txt files)"
542
+ "requirements.txt files and other TOML files)"
543
543
  ),
544
544
  )
545
545
  parser.add_argument(
@@ -567,7 +567,7 @@ def main() -> None:
567
567
  nargs="+",
568
568
  type=str,
569
569
  help=(
570
- "One or more local paths to a setup.cfg, setup.cfg, "
570
+ "One or more local paths to a *.toml, setup.cfg, "
571
571
  "and/or requirements.txt file"
572
572
  ),
573
573
  )
@@ -6,7 +6,7 @@ build-backend = "hatchling.build"
6
6
 
7
7
  [project]
8
8
  name = "dependence"
9
- version = "1.0.1"
9
+ version = "1.0.3"
10
10
  description = "A dependency management tool for python projects"
11
11
  readme = "README.md"
12
12
  license = "MIT"
@@ -62,6 +62,7 @@ python = "3.13"
62
62
  dependencies = [
63
63
  "mkdocs-material",
64
64
  "mkdocstrings[python]",
65
+ "black",
65
66
  ]
66
67
 
67
68
  [tool.hatch.envs.docs.env-vars]
@@ -102,3 +103,14 @@ max-complexity = 10
102
103
  [tool.ruff.format]
103
104
  docstring-code-format = true
104
105
  docstring-code-line-length = 20
106
+
107
+ [tool.black]
108
+ line-length = 79
109
+ target-version = [
110
+ "py38",
111
+ "py39",
112
+ "py310",
113
+ "py311",
114
+ "py312",
115
+ "py313",
116
+ ]
File without changes