Skip to content

Commit

Permalink
Merge pull request #67 from sandialabs/change-package-name-for-pypi
Browse files Browse the repository at this point in the history
patch: Change package name for PyPI
  • Loading branch information
jmgate committed Jul 10, 2024
2 parents d575880 + 0cbf0df commit 61496db
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 5 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ to capture what's happening *in the shell* rather than in Python itself.

To get up and running with `shell-logger`, simply:
```bash
python3 -m pip install shell-logger
python3 -m pip install shell-logger-sandialabs
```

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

For more detailed usage and API information, please see
Expand Down
Binary file not shown.
Binary file added dist/shell_logger_sandialabs-1.0.1.tar.gz
Binary file not shown.
2 changes: 1 addition & 1 deletion doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"(NTESS)"
)
author = "Josh Braun, David Collins, Jason M. Gates"
version = "1.0.0"
version = "1.0.1"
release = version


Expand Down
7 changes: 5 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ build-backend = "poetry.core.masonry.api"


[tool.poetry]
name = "shell-logger"
version = "1.0.0"
name = "shell-logger-sandialabs"
version = "1.0.1"
license = "LICENSE.md"
readme = "README.md"
keywords = ["shell", "logging"]
Expand Down Expand Up @@ -41,6 +41,9 @@ classifiers = [
"Topic :: System :: System Shells",
"Typing :: Typed"
]
packages = [
{ include = "shell_logger" },
]


[tool.poetry.dependencies]
Expand Down
2 changes: 1 addition & 1 deletion shell_logger/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@
from .shell_logger import ShellLogger, ShellLoggerDecoder, ShellLoggerEncoder

__all__ = ["ShellLogger", "ShellLoggerDecoder", "ShellLoggerEncoder"]
__version__ = "1.0.0"
__version__ = "1.0.1"

0 comments on commit 61496db

Please sign in to comment.