This repository has been archived by the owner on Apr 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
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
1 parent
5f24244
commit a61190b
Showing
3 changed files
with
39 additions
and
33 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 |
---|---|---|
|
@@ -87,3 +87,6 @@ ENV/ | |
|
||
# Rope project settings | ||
.ropeproject | ||
|
||
# Idea files | ||
.idea |
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 |
---|---|---|
@@ -1,30 +1,36 @@ | ||
from setuptools import setup | ||
|
||
setup(name='comic-scraper', | ||
version='0.5.2', | ||
description='Scraps comics,mangas and creates cbz files for offline reading', | ||
version='0.6.0', | ||
description='Scraps comics,mangas and creates cbz (/pdf) files for offline reading', | ||
url='https://github.com/AbstractGeek/comic-scraper', | ||
download_url='https://github.com/AbstractGeek/comic-scraper/tarball/0.5.2', | ||
download_url='https://github.com/AbstractGeek/comic-scraper/tarball/0.6.0', | ||
author='Dinesh Natesan', | ||
author_email='[email protected]', | ||
license='MIT', | ||
classifiers=[ | ||
'Development Status :: 3 - Alpha', | ||
'License :: OSI Approved :: MIT License', | ||
'Programming Language :: Python :: 3.5', | ||
'Topic :: Games/Entertainment', | ||
'Development Status :: 3 - Alpha', | ||
'License :: OSI Approved :: MIT License', | ||
'Programming Language :: Python :: 3.5', | ||
'Topic :: Games/Entertainment', | ||
], | ||
keywords='comics manga scraper', | ||
packages=['comic_scraper'], | ||
install_requires=[ | ||
'beautifulsoup4', | ||
'futures', | ||
'requests', | ||
'numpy' | ||
'beautifulsoup4==4.6.0', | ||
'certifi==2017.7.27.1', | ||
'chardet==3.0.4', | ||
'futures==3.1.1', | ||
'idna==2.6', | ||
'img2pdf==0.2.4', | ||
'olefile==0.44', | ||
'Pillow==4.3.0', | ||
'requests==2.18.4', | ||
'urllib3==1.22' | ||
], | ||
entry_points={ | ||
'console_scripts': | ||
['comic-scraper=comic_scraper.comic_scraper:main'], | ||
}, | ||
'console_scripts': | ||
['comic-scraper=comic_scraper.comic_scraper:main'], | ||
}, | ||
include_package_data=True, | ||
zip_safe=False) |