Skip to content

Commit e4bca39

Browse files
committed
Release 0.7.1
Add long_description to setup.py for pipy Signed-off-by: Alastair Porter <alastair@porter.net.nz>
1 parent f45a2d0 commit e4bca39

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

CHANGES

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
0.7dev:
1+
0.7.1 (2020-01-11):
2+
* include README file in pypi
3+
4+
0.7 (2020-01-09):
25
* removed support for PUIDs and Echoprint (Alastair Porter, #237)
36
* removed the 'artists' include for work lookup (Alastair Porter, #231 & #227)
47
* allow the 'work-level-rels' include for recording lookups (Shen-Ta Hsieh, #213)

musicbrainzngs/musicbrainz.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
from musicbrainzngs import util
2121
from musicbrainzngs import compat
2222

23-
_version = "0.7"
23+
_version = "0.7.1"
2424
_log = logging.getLogger("musicbrainzngs")
2525

2626
LUCENE_SPECIAL = r'([+\-&|!(){}\[\]\^"~*?:\\\/])'

setup.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,19 @@
44

55
from musicbrainzngs import musicbrainz
66

7+
with open("README.rst", "r") as fh:
8+
long_description = fh.read()
9+
710
setup(
811
name="musicbrainzngs",
912
version=musicbrainz._version,
1013
description="Python bindings for the MusicBrainz NGS and"
1114
" the Cover Art Archive webservices",
15+
long_description=long_description,
16+
long_description_content_type="text/x-rst",
1217
author="Alastair Porter",
1318
author_email="alastair@porter.net.nz",
14-
url="https://python-musicbrainzngs.readthedocs.org/",
19+
url="https://python-musicbrainzngs.readthedocs.io/",
1520
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
1621
packages=['musicbrainzngs'],
1722
license='BSD 2-clause',

0 commit comments

Comments
 (0)