Skip to content

Commit a743ded

Browse files
committed
Change package name to perprof-py because of PyPI existing package and add twine as optional requirement
1 parent 08ad34d commit a743ded

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- uses: docker/metadata-action@v4
2626
id: meta
2727
with:
28-
images: abelsiqueira/perprof
28+
images: abelsiqueira/perprof-py
2929

3030
- uses: docker/build-push-action@v4
3131
with:

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@ and this project adheres to [Semantic Versioning].
1414
- CITATION.cff
1515
- Docker image
1616

17+
### Changed
18+
19+
- Package name is now perprof-py because of name clashes in PyPI.
20+
1721
### Removed
1822

1923
- Support for Python < 3.7

doc/install.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Install perprof-py in a Python environment with pip by cloning it and running th
2020

2121
You can also use the docker image:
2222

23-
$ docker run perprof:latest OPTIONS
23+
$ docker run abelsiqueira/perprof-py:latest OPTIONS
2424

2525
In this case, you will need to pass a volume with your data and to receive the plots.
2626

pyproject.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ requires = ["setuptools", "wheel"]
33
build-backend = "setuptools.build_meta"
44

55
[project]
6-
name = "perprof"
6+
name = "perprof-py"
77
authors = [
88
{name = "Abel Soares Siqueira", email = "[email protected]"},
99
{name = "Raniere Gaia Costa da Silva", email = "[email protected]"},
@@ -33,6 +33,9 @@ dev = [
3333
"pytest",
3434
"pytest-cov",
3535
]
36+
publishing = [
37+
"twine"
38+
]
3639

3740
[project.scripts]
3841
perprof = "perprof.main:main"

0 commit comments

Comments
 (0)