Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
Clivern committed Apr 15, 2023
1 parent 47e038d commit 23f6e6a
Show file tree
Hide file tree
Showing 17 changed files with 25 additions and 25 deletions.
2 changes: 1 addition & 1 deletion .coveragerc
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# .coveragerc to control coverage.py
[run]
branch = True
source = dachshund
source = hond
# omit = bad_file.py

[paths]
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ TOX ?= tox

help: Makefile
@echo
@echo " Choose a command run in Dachshund:"
@echo " Choose a command run in Hond:"
@echo
@sed -n 's/^##//p' $< | column -t -s ':' | sed -e 's/^/ /'
@echo
Expand Down
12 changes: 6 additions & 6 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
.. image:: https://img.shields.io/pypi/v/Dachshund.svg
.. image:: https://img.shields.io/pypi/v/Hond.svg
:alt: PyPI-Server
:target: https://pypi.org/project/Dachshund/
.. image:: https://github.com/Uptimedog/Dachshund/actions/workflows/ci.yml/badge.svg
:target: https://pypi.org/project/Hond/
.. image:: https://github.com/Clevenio/Hond/actions/workflows/ci.yml/badge.svg
:alt: Build Status
:target: https://github.com/Uptimedog/Dachshund/actions/workflows/ci.yml
:target: https://github.com/Clevenio/Hond/actions/workflows/ci.yml

|
========
Dachshund
Hond
========

Metrics Ingestion and Alerting Reimagined.
Expand All @@ -17,4 +17,4 @@ Dachshund
Note
====

This project is created and maintained for Uptimedog. see https://github.com/Uptimedog
This project is created and maintained for Clevenio. see https://github.com/Clevenio
4 changes: 2 additions & 2 deletions examples/basic.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
# See the License for the specific language governing permissions and
# limitations under the License.

from dachshund.store.elasticsearch import ElasticSearch
from dachshund.metric import Metric
from hond.store.elasticsearch import ElasticSearch
from hond.metric import Metric


def main():
Expand Down
24 changes: 12 additions & 12 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,22 @@
# https://setuptools.pypa.io/en/latest/references/keywords.html

[metadata]
name = dachshund
name = hond
description = Metrics Ingestion and Alerting Reimagined.
author = Clivern
author_email = [email protected]
license = MIT
license_files = LICENSE.txt
long_description = file: README.rst
long_description_content_type = text/x-rst
url = https://github.com/uptimedog/dachshund/
url = https://github.com/clevenio/hond/
# Add here related links, for example:
project_urls =
Documentation = https://github.com/uptimedog/dachshund/
Source = https://github.com/uptimedog/dachshund/
Changelog = https://github.com/uptimedog/dachshund/blob/main/CHANGELOG.rst
Tracker = https://github.com/uptimedog/dachshund/issues
Download = https://pypi.org/project/dachshund/#files
Documentation = https://github.com/clevenio/hond/
Source = https://github.com/clevenio/hond/
Changelog = https://github.com/clevenio/hond/blob/main/CHANGELOG.rst
Tracker = https://github.com/clevenio/hond/issues
Download = https://pypi.org/project/hond/#files

# Change if running only on Windows, Mac or Linux (comma-separated)
platforms = any
Expand Down Expand Up @@ -61,7 +61,7 @@ exclude =

[options.extras_require]
# Add here additional requirements for extra features, to install with:
# `pip install Dachshund[PDF]` like:
# `pip install Hond[PDF]` like:
# PDF = ReportLab; RXP

# Add here test requirements (semicolon/line-separated)
Expand All @@ -75,10 +75,10 @@ testing =
[options.entry_points]
# Add here console scripts like:
# console_scripts =
# script_name = dachshund.module:function
# script_name = hond.module:function
# For example:
# console_scripts =
# fibonacci = dachshund.runner:run
# fibonacci = hond.runner:run
# And any other entry points, for example:
# pyscaffold.cli =
# awesome = pyscaffoldext.awesome.extension:AwesomeExtension
Expand All @@ -90,7 +90,7 @@ testing =
# CAUTION: --cov flags may prohibit setting breakpoints while debugging.
# Comment those flags to avoid this pytest issue.
addopts =
--cov dachshund --cov-report term-missing
--cov hond --cov-report term-missing
--verbose
norecursedirs =
dist
Expand Down Expand Up @@ -124,4 +124,4 @@ exclude =
# PyScaffold's parameters when the project was created.
# This will be used when updating. Do not change!
version = 4.1.1
package = dachshund
package = hond
2 changes: 1 addition & 1 deletion src/dachshund/__init__.py → src/hond/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

try:
# Change here if project is renamed and does not equal the package name
dist_name = "dachshund"
dist_name = "hond"
__version__ = version(dist_name)
except PackageNotFoundError: # pragma: no cover
__version__ = "unknown"
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

import time

from dachshund.logger import Logger
from hond.logger import Logger
from elasticsearch import Elasticsearch


Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion tests/test_metric.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

import pytest

from dachshund.metric import Metric
from hond.metric import Metric


def test_metric():
Expand Down

0 comments on commit 23f6e6a

Please sign in to comment.