-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
81 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# ShellLogger | ||
|
||
FILL THIS OUT | ||
|
||
## Getting Started | ||
|
||
```bash | ||
git clone git@internal.gitlab.server:ShellLogger/ShellLogger | ||
cd ShellLogger | ||
python3 -m pip install . | ||
pytest | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
[tool.poetry] | ||
name = "shelllogger" | ||
version = "1.0.0" | ||
license = "" | ||
readme = "README.md" | ||
keywords = ["shell", "logging"] | ||
repository = "https://internal.gitlab.server/ShellLogger/ShellLogger" | ||
description = "A tool for keeping track of Python's interactions with the shell." | ||
documentation = "INSERT URL FOR SPHINX DOCS HERE" | ||
authors = [ | ||
"Josh Braun <josbrau@sandia.gov>", | ||
"David Collins <dcollin@sandia.gov>", | ||
"Jason M. Gates <jmgate@sandia.gov>" | ||
] | ||
classifiers = [ | ||
"Development Status :: 3 - Alpha", | ||
"Intended Audience :: Developers", | ||
"Intended Audience :: Information Technology", | ||
"Intended Audience :: System Administrators", | ||
# "Licence :: FILL THIS OUT", UNCOMMENT AFTER ADDING LICENSE | ||
"Natural Language :: English", | ||
"Operating System :: MacOS", | ||
"Operating System :: POSIX", | ||
"Operating System :: UNIX", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3 :: Only", | ||
"Programming Language :: Python :: 3.8", | ||
"Topic :: Software Development", | ||
"Topic :: Software Development :: Debuggers", | ||
"Topic :: Software Development :: Documentation", | ||
"Topic :: System :: Logging", | ||
"Topic :: System :: Shells", | ||
"Topic :: System :: System Shells", | ||
# "Typing :: Typed" UNCOMMENT AFTER ADDING TYPE HINTS | ||
] | ||
packages = [ | ||
{ include = "shelllogger", from = "src" }, | ||
] | ||
# include = ["CHANGELOG.md"] UNCOMMENT WHEN WE ADD A CHANGELOG | ||
|
||
|
||
[tool.poetry.urls] | ||
CI = "https://internal.gitlab.server/ShellLogger/ShellLogger/-/pipelines" | ||
Issues = "https://internal.gitlab.server/ShellLogger/ShellLogger/-/issues" | ||
|
||
|
||
[tool.poetry.dependencies] | ||
python = "^3.8" | ||
|
||
|
||
[tool.poetry.dev-dependencies] | ||
mock = "^4.0" | ||
pytest = "^6.2" | ||
pytest-cov = "^2.12" | ||
pytest-mock = "^3.6" | ||
sphinx = "^4.0" | ||
sphinx-argparse = "^0.2" | ||
sphinx-rtd-theme = "^0.5" | ||
|
||
|
||
[build-system] | ||
requires = ["poetry-core>=1.0"] | ||
build-backend = "poetry.core.masonry.api" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#!/usr/bin/env python3 | ||
import setuptools | ||
|
||
if __name__ == "__main__": | ||
setuptools.setup() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters