-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: starry69 <[email protected]>
- Loading branch information
1 parent
812c83d
commit 5cf4c27
Showing
5 changed files
with
29 additions
and
25 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
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
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
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
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 |
---|---|---|
|
@@ -6,24 +6,25 @@ | |
long_description = f.read() | ||
|
||
setup( | ||
name='pymoviedb', | ||
description='A simple wrapper over themoviedb.org API', | ||
name="pymoviedb", | ||
description="A simple wrapper over themoviedb.org API", | ||
long_description=long_description, | ||
long_description_content_type='text/markdown', | ||
url='https://github.com/starry69/PyMovieDB', | ||
author='Stɑrry Shivɑm', | ||
author_email='[email protected]', | ||
version='1.2', | ||
license='MIT', | ||
long_description_content_type="text/markdown", | ||
url="https://github.com/starry69/PyMovieDB", | ||
author="Stɑrry Shivɑm", | ||
author_email="[email protected]", | ||
version="1.3", | ||
license="MIT", | ||
packages=find_packages(), | ||
install_requires=['requests'], | ||
python_requires='>=3.6', | ||
keywords='api development tmdb themoviedb wrapper library python3', | ||
install_requires=["requests"], | ||
python_requires=">=3.6", | ||
keywords="api development tmdb themoviedb wrapper library python3", | ||
classifiers=[ | ||
'Programming Language :: Python :: 3.6', | ||
'Programming Language :: Python :: 3.7', | ||
'Programming Language :: Python :: 3.8', | ||
'License :: OSI Approved :: MIT License', | ||
'Operating System :: OS Independent', | ||
'Intended Audience :: Developers' | ||
]) | ||
"Programming Language :: Python :: 3.6", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
"Intended Audience :: Developers", | ||
], | ||
) |