-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
9 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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", | ||
|
@@ -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"}, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters