-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated version Updated changelog Updated TravisCI Build config with new Pypi token info Updated setup.py file Added "venv" to be ignored.
- Loading branch information
Showing
6 changed files
with
35 additions
and
42 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/usr/bin/env python | ||
# -*- coding: utf-8 -*- | ||
|
||
__version__ = "2019.05.26" | ||
__version__ = "2021.06.13" |
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,39 +1,26 @@ | ||
from distutils.core import setup | ||
import setuptools | ||
|
||
from comic_dl import __version__ | ||
|
||
readme = open('ReadMe.md').read() | ||
history = open('Changelog.md').read() | ||
|
||
setup( | ||
name = 'comic_dl', | ||
packages = ['comic_dl','comic_dl.sites', 'comic_dl.manga_eden'], # this must be the same as the name above | ||
install_requires=["selenium", | ||
"requests", | ||
"more_itertools", | ||
"cloudscraper", | ||
"bs4" | ||
], | ||
version = '2018.01.10', | ||
description = 'Comic-dl is a command line tool to download Comics and Manga from various Manga and Comic sites easily.', | ||
long_description=readme + '\n\n' + history, | ||
author = 'Xonshiz', | ||
author_email = 'xonshiz@psychoticelites.com', | ||
url='https://github.com/Xonshiz/comic-dl', | ||
download_url = 'https://codeload.github.com/Xonshiz/comic-dl/tar.gz/2018.1.10', | ||
keywords = ['comic-dl', 'cli', 'comic downloader','manga downloader','mangafox','batoto','kissmanga','comic naver','readcomiconline'], | ||
classifiers=[ | ||
'Development Status :: 5 - Production/Stable', | ||
'Environment :: Console', | ||
'Intended Audience :: End Users/Desktop', | ||
'License :: Public Domain', | ||
'Natural Language :: English', | ||
'Programming Language :: Python :: 2.6', | ||
'Programming Language :: Python :: 2.7', | ||
'Programming Language :: Python :: 3', | ||
'Programming Language :: Python :: 3.2', | ||
'Programming Language :: Python :: 3.3', | ||
'Programming Language :: Python :: 3.4', | ||
'Programming Language :: Python :: 3.5', | ||
'Operating System :: OS Independent', | ||
'Topic :: Multimedia :: Graphics' | ||
setuptools.setup( | ||
name="comic_dl", # Replace with your own username | ||
version=__version__.__version__, | ||
author="Xonshiz", | ||
author_email='xonshiz@gmail.com', | ||
url='https://github.com/Xonshiz/comic-dl', | ||
download_url='https://github.com/Xonshiz/comic-dl/releases/latest', | ||
description="Comic-dl is a command line tool to download Comics and Manga from various Manga and Comic sites easily.", | ||
long_description='{0}\n\n{1}'.format(readme, history), | ||
long_description_content_type="text/markdown", | ||
packages=setuptools.find_packages(), | ||
classifiers=[ | ||
"Programming Language :: Python :: 3", | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
], | ||
python_requires='>=3.0', | ||
) | ||
|