From 5033f87302c867f874b9c1611565ffe432fad985 Mon Sep 17 00:00:00 2001 From: Heath Brown Date: Tue, 1 Nov 2022 19:02:42 -0500 Subject: [PATCH] Add name and updated Readme --- README.md | 17 ++++++++++++++--- pyproject.toml | 8 ++++---- 2 files changed, 18 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 56e8325..be19852 100644 --- a/README.md +++ b/README.md @@ -1,13 +1,11 @@ # pscanner -[![PyPI - Version](https://img.shields.io/pypi/v/pscanner.svg)](https://pypi.org/project/pscanner) -[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/pscanner.svg)](https://pypi.org/project/pscanner) - ----- **Table of Contents** - [Installation](#installation) +- [Development](#development) - [License](#license) ## Installation @@ -16,6 +14,19 @@ pip install pscanner ``` +## Development + +Prereqs for development + +```console +pipx install hatch +``` + +Running development environment +```console +hatch shell +``` + ## License `pscanner` is distributed under the terms of the [MIT](https://spdx.org/licenses/MIT.html) license. diff --git a/pyproject.toml b/pyproject.toml index 4e947b6..a3584cf 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -10,7 +10,7 @@ requires-python = ">=3.7" license = "MIT" keywords = [] authors = [ - { name = "U.N. Owen", email = "void@some.where" }, + { name = "Heath Brown", email = "heathd.brown@gmail.com" }, ] classifiers = [ "Development Status :: 4 - Beta", @@ -30,9 +30,9 @@ dependencies = [ dynamic = ["version"] [project.urls] -Documentation = "https://github.com/unknown/pscanner#readme" -Issues = "https://github.com/unknown/pscanner/issues" -Source = "https://github.com/unknown/pscanner" +Documentation = "https://github.com/heathdbrown/pscanner#readme" +Issues = "https://github.com/heathdbrown/pscanner/issues" +Source = "https://github.com/heathdbrown/pscanner" [project.scripts] pscanner = "pscanner.cli:pscanner"