Marco Ricci commited on 2024-06-08 19:07:53
Zeige 8 geänderte Dateien mit 11 Einfügungen und 18 Löschungen.
Apparently, this is a `hatch` convention/tradeoff, but one that doesn't appear sensible to a project like this. On that note, since we're starting with a clear target API in mind, start directly at release 0.1.0 instead of the `hatch` default 0.0.1.
... | ... |
@@ -55,7 +55,7 @@ testpaths = ['src', 'tests'] |
55 | 55 |
xfail_strict = true |
56 | 56 |
|
57 | 57 |
[tool.hatch.version] |
58 |
-path = "src/derivepassphrase/__about__.py" |
|
58 |
+path = "src/derivepassphrase/__init__.py" |
|
59 | 59 |
|
60 | 60 |
[tool.hatch.envs.hatch-test] |
61 | 61 |
default-args = ['src', 'tests'] |
... | ... |
@@ -89,7 +89,6 @@ source_pkgs = ["derivepassphrase", "tests"] |
89 | 89 |
branch = true |
90 | 90 |
parallel = true |
91 | 91 |
omit = [ |
92 |
- "src/derivepassphrase/__about__.py", |
|
93 | 92 |
"src/derivepassphrase/__main__.py", |
94 | 93 |
] |
95 | 94 |
|
... | ... |
@@ -28,6 +28,8 @@ from collections.abc import Iterator, MutableSequence, Sequence |
28 | 28 |
from typing import assert_type, Literal, TypeAlias |
29 | 29 |
|
30 | 30 |
__all__ = ('Sequin', 'SequinExhaustedException') |
31 |
+__author__ = 'Marco Ricci <m@the13thletter.info>' |
|
32 |
+__version__ = "0.1.0" |
|
31 | 33 |
|
32 | 34 |
class Sequin: |
33 | 35 |
"""Generate pseudorandom non-negative numbers in different ranges. |
... | ... |
@@ -18,6 +18,8 @@ from typing import Any, NamedTuple, Self, TypeAlias |
18 | 18 |
from ssh_agent_client.types import KeyCommentPair, SSH_AGENT, SSH_AGENTC |
19 | 19 |
|
20 | 20 |
__all__ = ('SSHAgentClient',) |
21 |
+__author__ = 'Marco Ricci <m@the13thletter.info>' |
|
22 |
+__version__ = "0.1.0" |
|
21 | 23 |
|
22 | 24 |
_socket = socket |
23 | 25 |
|
24 | 26 |