Skip to content

Commit 61496db

Browse files
authored
Merge pull request #67 from sandialabs/change-package-name-for-pypi
patch: Change package name for PyPI
2 parents d575880 + 0cbf0df commit 61496db

6 files changed

+9
-5
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ to capture what's happening *in the shell* rather than in Python itself.
3838

3939
To get up and running with `shell-logger`, simply:
4040
```bash
41-
python3 -m pip install shell-logger
41+
python3 -m pip install shell-logger-sandialabs
4242
```
4343

4444
## Usage
@@ -48,6 +48,7 @@ Once the package is installed, you can simply
4848
from shell_logger import ShellLogger
4949
sl = ShellLogger("Title of Log File")
5050
sl.log("Execute my first command in the shell.", "echo 'Hello World'")
51+
sl.finalize()
5152
```
5253

5354
For more detailed usage and API information, please see
Binary file not shown.
170 KB
Binary file not shown.

doc/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"(NTESS)"
1919
)
2020
author = "Josh Braun, David Collins, Jason M. Gates"
21-
version = "1.0.0"
21+
version = "1.0.1"
2222
release = version
2323

2424

pyproject.toml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ build-backend = "poetry.core.masonry.api"
44

55

66
[tool.poetry]
7-
name = "shell-logger"
8-
version = "1.0.0"
7+
name = "shell-logger-sandialabs"
8+
version = "1.0.1"
99
license = "LICENSE.md"
1010
readme = "README.md"
1111
keywords = ["shell", "logging"]
@@ -41,6 +41,9 @@ classifiers = [
4141
"Topic :: System :: System Shells",
4242
"Typing :: Typed"
4343
]
44+
packages = [
45+
{ include = "shell_logger" },
46+
]
4447

4548

4649
[tool.poetry.dependencies]

shell_logger/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@
99
from .shell_logger import ShellLogger, ShellLoggerDecoder, ShellLoggerEncoder
1010

1111
__all__ = ["ShellLogger", "ShellLoggerDecoder", "ShellLoggerEncoder"]
12-
__version__ = "1.0.0"
12+
__version__ = "1.0.1"

0 commit comments

Comments
 (0)