Skip to content

Commit

Permalink
Rename project to "breathing_cat"
Browse files Browse the repository at this point in the history
  • Loading branch information
luator committed Sep 30, 2022
1 parent b62dd62 commit 9a14a01
Show file tree
Hide file tree
Showing 14 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Documentation Builder for C++ and Python packages
=================================================

mpiis_doc_build is a tool for building documentation that is used for some of the
breathing_cat is a tool for building documentation that is used for some of the
software packages developed at the Max Planck Institute for Intelligent Systems (MPI-IS)
and the New York University.

Expand All @@ -20,7 +20,7 @@ Installation
Simply clone this repository and install it with

```
cd path/to/mpiis_doc_build
cd path/to/breathing-cat
pip install .
```

Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions mpiis_doc_build/__main__.py → breathing_cat/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ def AbsolutePath(path):
parser.add_argument(
"--version",
action="version",
help="Show version of mpiis_doc_build.",
version=f"mpiis_doc_build version {__version__}",
help="Show version of breathing_cat.",
version=f"breathing_cat version {__version__}",
)
parser.add_argument(
"--output-dir",
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import xml.etree.ElementTree


_logger = logging.getLogger("mpiis_doc_build.find_version")
_logger = logging.getLogger("breathing_cat.find_version")


class VersionNotFound(Exception):
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"


[project]
name = "mpiis_doc_build"
name = "breathing_cat"
version = "0.1.0"
description = "Tool to build documentation for C++/Python-Packages used at MPI-IS"
authors = [
Expand All @@ -29,7 +29,7 @@ dependencies = [


[project.scripts]
mpiis-doc-build = "mpiis_doc_build.__main__:main"
mpiis-doc-build = "breathing_cat.__main__:main"

[tool.setuptools.package-data]
mpiis_doc_build = ["resources/**/*.in"]
breathing_cat = ["resources/**/*.in"]

0 comments on commit 9a14a01

Please sign in to comment.