Skip to content

Commit e7fbec7

Browse files
committed
v0.6.0
Update docs and copyright notices
1 parent 2175f0d commit e7fbec7

6 files changed

Lines changed: 20 additions & 7 deletions

File tree

docs/api.rst

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,19 @@ API Reference
3434
:members:
3535
:undoc-members:
3636

37+
.. autoclass:: Media
38+
:members:
39+
:undoc-members:
40+
3741
.. autoclass:: Track
3842
:members:
3943
:undoc-members:
44+
:show-inheritance:
45+
46+
.. autoclass:: Video
47+
:members:
48+
:undoc-members:
49+
:show-inheritance:
4050

4151
.. autoclass:: Playlist
4252
:members:

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,14 +53,14 @@
5353

5454
# General information about the project.
5555
project = u'tidalapi'
56-
copyright = u'2014, Thomas Amland'
56+
copyright = u'2014-2019, Thomas Amland, morguldir'
5757

5858
# The version info for the project you're documenting, acts as replacement
5959
# for |version| and |release|, also used in various other places throughout
6060
# the built documents.
6161
#
6262
# The short X.Y version.
63-
version = '0.5.0'
63+
version = '0.6.0'
6464
# The full version, including alpha/beta/rc tags.
6565
release = version
6666

setup.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@
1818

1919
setup(
2020
name='tidalapi',
21-
version='0.5.0',
21+
version='0.6.0',
2222
description='Unofficial API for TIDAL music streaming service.',
2323
long_description=long_description,
24-
author='Thomas Amland',
25-
author_email='thomas.amland@googlemail.com',
24+
author='Thomas Amland, morguldir',
25+
author_email='thomas.amland@googlemail.com, morguldir@protonmail.com',
2626
url='https://github.com/tamland/tidalapi',
2727
license='LGPL',
2828
packages=['tidalapi'],
@@ -33,10 +33,10 @@
3333
'Intended Audience :: Developers',
3434
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
3535
"Programming Language :: Python :: 2",
36-
'Programming Language :: Python :: 2.6',
3736
'Programming Language :: Python :: 2.7',
3837
'Programming Language :: Python :: 3',
39-
'Programming Language :: Python :: 3.3',
4038
'Programming Language :: Python :: 3.4',
39+
'Programming Language :: Python :: 3.6',
40+
'Programming Language :: Python :: 3.7',
4141
],
4242
)

tests/test_api.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# -*- coding: utf-8 -*-
22
#
3+
# Copyright (C) 2019 morguldir
34
# Copyright (C) 2014 Thomas Amland
45
#
56
# This program is free software: you can redistribute it and/or modify

tidalapi/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# -*- coding: utf-8 -*-
22
#
3+
# Copyright (C) 2019 morguldir
34
# Copyright (C) 2014 Thomas Amland
45
#
56
# This program is free software: you can redistribute it and/or modify

tidalapi/models.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# -*- coding: utf-8 -*-
22
#
3+
# Copyright (C) 2019 morguldir
34
# Copyright (C) 2014 Thomas Amland
45
#
56
# This program is free software: you can redistribute it and/or modify

0 commit comments

Comments
 (0)