Skip to content

Commit

Permalink
Merge pull request #16 from Dog-Face-Development/willtheorangeguy-rename
Browse files Browse the repository at this point in the history
Rename package for PyPI
  • Loading branch information
willtheorangeguy authored Sep 12, 2022
2 parents a3ebebd + d90eb7c commit e9b77d8
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 9 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## [v0.2.1](https://github.com/Dog-Face-Development/PyAvatar/releases/tag/v0.2.1)

### Changed

- Changed `pip` package name.

## [v0.2.0](https://github.com/Dog-Face-Development/PyAvatar/releases/tag/v0.2.0)

### Added
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,10 +87,10 @@ You can install the program from the [Python Package Index](https://pypi.org/pro

```bash
# Install via pip
$ pip install pyavatar
$ pip install python-avatar

# Run the CLI
$ pyavatar
$ python-avatar
```

## Support
Expand Down
4 changes: 2 additions & 2 deletions docs/USAGE.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ To install PyAvatar, you can use an executable package (Windows), run the script
## Python Package Index (`pip`)

1. Download and install [Python](https://www.python.org/downloads/).
2. Open a terminal and run the command: `pip install pyavatar`.
3. Start the program by running the command: `pyavatar`.
2. Open a terminal and run the command: `pip install python-avatar`.
3. Start the program by running the command: `python-avatar`.
4. Enjoy the program!
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ requires = ["setuptools", "wheel"]

[project]
name = "Python-Avatar"
version = "0.2.0"
version = "0.2.1"
authors = [
{ name= "willtheorangeguy" },
]
Expand Down
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = python-avatar
version = 0.2.0
version = 0.2.1

[options]
packages = find:
Expand All @@ -13,4 +13,4 @@ where = PyAvatar

[options.entry_points]
console_scripts =
pyavatar = main:avatars
python-avatar = main:avatars
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ def readme():

setup(
name='python-avatar',
version='0.2.0',
version='0.2.1',
description="Easily display all of your creative avatars to keep them consistent across websites.",
long_description=readme(),
classifiers=[
Expand All @@ -24,7 +24,7 @@ def readme():
include_package_data=True,
entry_points={
'console_scripts': [
'pyavatar=main:avatars'
'python-avatar=main:avatars'
]
},
)

0 comments on commit e9b77d8

Please sign in to comment.