Skip to content

Commit

Permalink
fix: agrc -> ugrc
Browse files Browse the repository at this point in the history
  • Loading branch information
stdavis committed May 7, 2024
1 parent 4f82e6e commit 10e681e
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
if: github.ref == 'refs/heads/main' && needs.release-please.outputs.release_created
environment:
name: prod
url: https://pypi.org/project/agrc-sweeper/
url: https://pypi.org/project/ugrc-sweeper/
permissions:
id-token: write

Expand Down
4 changes: 2 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# agrc-sweeper [![PyPI version](https://badge.fury.io/py/agrc-sweeper.svg)](https://badge.fury.io/py/agrc-sweeper)[![Push Events](https://github.com/agrc/sweeper/actions/workflows/push.yml/badge.svg)](https://github.com/agrc/sweeper/actions/workflows/push.yml)
# ugrc-sweeper [![PyPI version](https://badge.fury.io/py/ugrc-sweeper.svg)](https://badge.fury.io/py/ugrc-sweeper)[![Push Events](https://github.com/agrc/sweeper/actions/workflows/push.yml/badge.svg)](https://github.com/agrc/sweeper/actions/workflows/push.yml)

The data cleaning service.

Expand Down Expand Up @@ -106,7 +106,7 @@ A normalized string representing the entire address that was passed into the con
1. activate environment
- `activate sweeper`
1. install sweeper
- `pip install agrc-sweeper`
- `pip install ugrc-sweeper`
1. Optionally duplicate `config.sample.json` as `config.json` in the folder where you will run sweeper.

> [!CAUTION]
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from setuptools import find_packages, setup

setup(
name="agrc-sweeper",
name="ugrc-sweeper",
version="2.0.0",
license="MIT",
description="CLI tool for making good data",
Expand Down
6 changes: 3 additions & 3 deletions src/sweeper/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@

def main():
"""Main entry point for program. Parse arguments and pass to sweeper modules."""
args = docopt(__doc__, version=pkg_resources.require("agrc-sweeper")[0].version)
args = docopt(__doc__, version=pkg_resources.require("ugrc-sweeper")[0].version)

log = setup_logging(args["--save-report"], args["--scheduled"])

Expand All @@ -57,8 +57,8 @@ def main():
"to_addresses": config.get_config("TO_ADDRESSES"),
"api_key": config.get_config("SENDGRID_API_KEY"),
},
client_name="agrc-sweeper",
client_version=pkg_resources.require("agrc-sweeper")[0].version,
client_name="ugrc-sweeper",
client_version=pkg_resources.require("ugrc-sweeper")[0].version,
)
)

Expand Down

0 comments on commit 10e681e

Please sign in to comment.