Skip to content

Commit

Permalink
Release 0.7.1
Browse files Browse the repository at this point in the history
Add long_description to setup.py for pipy

Signed-off-by: Alastair Porter <[email protected]>
  • Loading branch information
alastair committed Jan 11, 2020
1 parent f45a2d0 commit e4bca39
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
5 changes: 4 additions & 1 deletion CHANGES
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
0.7dev:
0.7.1 (2020-01-11):
* include README file in pypi

0.7 (2020-01-09):
* removed support for PUIDs and Echoprint (Alastair Porter, #237)
* removed the 'artists' include for work lookup (Alastair Porter, #231 & #227)
* allow the 'work-level-rels' include for recording lookups (Shen-Ta Hsieh, #213)
Expand Down
2 changes: 1 addition & 1 deletion musicbrainzngs/musicbrainz.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
from musicbrainzngs import util
from musicbrainzngs import compat

_version = "0.7"
_version = "0.7.1"
_log = logging.getLogger("musicbrainzngs")

LUCENE_SPECIAL = r'([+\-&|!(){}\[\]\^"~*?:\\\/])'
Expand Down
7 changes: 6 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,19 @@

from musicbrainzngs import musicbrainz

with open("README.rst", "r") as fh:
long_description = fh.read()

setup(
name="musicbrainzngs",
version=musicbrainz._version,
description="Python bindings for the MusicBrainz NGS and"
" the Cover Art Archive webservices",
long_description=long_description,
long_description_content_type="text/x-rst",
author="Alastair Porter",
author_email="[email protected]",
url="https://python-musicbrainzngs.readthedocs.org/",
url="https://python-musicbrainzngs.readthedocs.io/",
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
packages=['musicbrainzngs'],
license='BSD 2-clause',
Expand Down

0 comments on commit e4bca39

Please sign in to comment.