Skip to content

Commit

Permalink
v1.3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
7x11x13 committed Jun 18, 2024
1 parent c12f760 commit f141224
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 17 deletions.
22 changes: 7 additions & 15 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,22 +9,16 @@ def readme():

setup(
name="soundcloud-v2",
version="1.3.7",
version="1.3.8",
description="Python wrapper for the v2 SoundCloud API",
long_description=readme(),
long_description_content_type='text/markdown',
long_description_content_type="text/markdown",
author="7x11x13",
author_email="[email protected]",
url="https://github.com/7x11x13/soundcloud.py",
packages=["soundcloud", "soundcloud.resource"],
install_requires=[
"dacite",
"python-dateutil>=2.8.2",
"requests"
],
extras_require={
"test": ["coveralls", "pytest", "pytest-dotenv"]
},
install_requires=["dacite", "python-dateutil>=2.8.2", "requests"],
extras_require={"test": ["coveralls", "pytest", "pytest-dotenv"]},
classifiers=[
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
Expand All @@ -33,10 +27,8 @@ def readme():
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
"Operating System :: OS Independent",
],
python_requires = ">=3.7",
project_urls={
"Bug Tracker": "https://github.com/7x11x13/soundcloud.py/issues"
}
python_requires=">=3.7",
project_urls={"Bug Tracker": "https://github.com/7x11x13/soundcloud.py/issues"},
)
4 changes: 2 additions & 2 deletions soundcloud/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
MiniTrack, PublisherMetadata, Track,
Transcoding)
from soundcloud.resource.user import (Badges, BasicUser, CreatorSubscription,
Product, User)
Product, User, UserEmail)
from soundcloud.resource.visuals import Visual, Visuals
from soundcloud.resource.web_profile import WebProfile
from soundcloud.soundcloud import SoundCloud

__version__ = "1.3.7"
__version__ = "1.3.8"

0 comments on commit f141224

Please sign in to comment.