Skip to content

Commit e9b77d8

Browse files
Merge pull request #16 from Dog-Face-Development/willtheorangeguy-rename
Rename package for PyPI
2 parents a3ebebd + d90eb7c commit e9b77d8

File tree

6 files changed

+15
-9
lines changed

6 files changed

+15
-9
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## [v0.2.1](https://github.com/Dog-Face-Development/PyAvatar/releases/tag/v0.2.1)
4+
5+
### Changed
6+
7+
- Changed `pip` package name.
8+
39
## [v0.2.0](https://github.com/Dog-Face-Development/PyAvatar/releases/tag/v0.2.0)
410

511
### Added

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,10 +87,10 @@ You can install the program from the [Python Package Index](https://pypi.org/pro
8787

8888
```bash
8989
# Install via pip
90-
$ pip install pyavatar
90+
$ pip install python-avatar
9191

9292
# Run the CLI
93-
$ pyavatar
93+
$ python-avatar
9494
```
9595

9696
## Support

docs/USAGE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@ To install PyAvatar, you can use an executable package (Windows), run the script
2121
## Python Package Index (`pip`)
2222

2323
1. Download and install [Python](https://www.python.org/downloads/).
24-
2. Open a terminal and run the command: `pip install pyavatar`.
25-
3. Start the program by running the command: `pyavatar`.
24+
2. Open a terminal and run the command: `pip install python-avatar`.
25+
3. Start the program by running the command: `python-avatar`.
2626
4. Enjoy the program!

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ requires = ["setuptools", "wheel"]
44

55
[project]
66
name = "Python-Avatar"
7-
version = "0.2.0"
7+
version = "0.2.1"
88
authors = [
99
{ name= "willtheorangeguy" },
1010
]

setup.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = python-avatar
3-
version = 0.2.0
3+
version = 0.2.1
44

55
[options]
66
packages = find:
@@ -13,4 +13,4 @@ where = PyAvatar
1313

1414
[options.entry_points]
1515
console_scripts =
16-
pyavatar = main:avatars
16+
python-avatar = main:avatars

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ def readme():
66

77
setup(
88
name='python-avatar',
9-
version='0.2.0',
9+
version='0.2.1',
1010
description="Easily display all of your creative avatars to keep them consistent across websites.",
1111
long_description=readme(),
1212
classifiers=[
@@ -24,7 +24,7 @@ def readme():
2424
include_package_data=True,
2525
entry_points={
2626
'console_scripts': [
27-
'pyavatar=main:avatars'
27+
'python-avatar=main:avatars'
2828
]
2929
},
3030
)

0 commit comments

Comments
 (0)