Skip to content

Commit

Permalink
Feat: release 1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ElinaValieva committed May 18, 2020
1 parent 1e0f089 commit 8250443
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 21 deletions.
32 changes: 16 additions & 16 deletions .github/workflows/pythonpublish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,19 +13,19 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine
- name: Build and publish
env:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: |
python setup.py sdist bdist_wheel
twine upload dist/*
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine
- name: Build and publish
env:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: |
python setup.py sdist bdist_wheel
twine upload dist/*
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
# deezer-playlist-generator
![Python package](https://github.com/ElinaValieva/deezer-playlist-generator/workflows/Python%20package/badge.svg)
![Python](https://img.shields.io/pypi/pyversions/deezer-playlist-generator.svg?style=flat-square)
![](https://img.shields.io/pypi/l/deezer-playlist-generator.svg?style=flat-square)
![Version](https://img.shields.io/pypi/v/deezer-playlist-generator.svg?logo=python&logoColor=fff&style=flat-square)

> Library for working with Deezer API for creating a playlist by your preferences in **Deezer**
 

## Installation :hammer:
The package is published on PyPI and can be installed by running:
The package is published on [PyPI](https://pypi.org/project/deezer-playlist-generator/#description) and can be installed by running:
```
pip install deezer-playlist-generator
```
Expand Down Expand Up @@ -60,4 +65,4 @@ tracks = cp.generate_tracks()
DeezerPlayer(tracks).start()
```

![](https://github.com/ElinaValieva/deezer-playlist-generator/blob/master/images/markdown.png)
![](https://github.com/ElinaValieva/deezer-playlist-generator/blob/master/images/markdown.png)
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ def requirements():
return requirement


version = '1.0.0'
version = '1.0.1'
setup(
name='deezer_api',
name='deezer-playlist-generator',
version=version,
description='Library for working with Deezer API for creating a playlist by your preferences in Deezer',
long_description=readme(),
Expand All @@ -36,7 +36,6 @@ def requirements():
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development :: Libraries :: Python Modules",
],
Expand Down

0 comments on commit 8250443

Please sign in to comment.