Skip to content

Commit

Permalink
fix: package name
Browse files Browse the repository at this point in the history
  • Loading branch information
Tim Nunamaker committed Jul 27, 2024
1 parent e66defd commit b578bc1
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,8 @@ jobs:
with:
token: ${{ secrets.MY_RELEASE_PLEASE_TOKEN }}
release-type: python
bump-minor-pre-major: true
bump-patch-for-minor-pre-major: false

build-and-publish:
needs: [test, release-please]
Expand Down
2 changes: 1 addition & 1 deletion rstring/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from .cli import main

__version__ = "0.1.0"
__version__ = "0.2.0"
__all__ = ["main"]
2 changes: 1 addition & 1 deletion rstring/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

logger = logging.getLogger(__name__)

PRESETS_FILE = os.path.expanduser("~/.stringify.yaml")
PRESETS_FILE = os.path.expanduser("~/.rstring.yaml")
DEFAULT_PRESETS_FILE = os.path.join(os.path.dirname(__file__), 'default_presets.yaml')


Expand Down
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@
long_description = fh.read()

setup(
name="stringify",
version="0.1.0",
name="rstring",
version="0.2.0",
author="Tim Nunamaker",
author_email="[email protected]",
description="A tool to stringify code using rsync and manage presets",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/tnunamak/stringify",
url="https://github.com/tnunamak/rstring",
packages=find_packages(),
classifiers=[
"Development Status :: 3 - Alpha",
Expand All @@ -31,7 +31,7 @@
python_requires=">=3.6",
entry_points={
"console_scripts": [
"stringify=stringify.cli:main",
"rstring=rstring.cli:main",
],
},
install_requires=[
Expand Down

0 comments on commit b578bc1

Please sign in to comment.