--- a/finalchanctl +++ /dev/null @@ -1,23 +0,0 @@ -#!/usr/bin/env python3 -# Copyright 2016 ring -# Copying and distribution of this file, with or without modification, -# are permitted in any medium without royalty provided the copyright -# notice and this notice are preserved. This file is offered as-is, -# without any warranty. - -"""infinityctl variant for finalchan.net""" - -import os - -import infinitychan -import infinityctl - -infinitychan.dom = "https://finalchan.net" -infinitychan.mod = "https://finalchan.net/mod.php?" -infinitychan.sys = "https://finalchan.net" -infinitychan.media_base = "https://finalchan.net" -infinitychan.media = "https://finalchan.net/{board}/src/{tim}{ext}" -infinitychan.media_dedup = infinitychan.media -infinitychan.config = os.path.join(os.path.expanduser("~"), ".finalchanctl") - -infinityctl.main() --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ 'License :: OSI Approved :: GNU General Public License v3 (GPLv3)', 'Intended Audience :: End Users/Desktop'], py_modules=['infinitychan', 'infinityctl', 'botmod', 'threadviewer', 'urls'], - scripts=['infinityctl', 'onionctl', 'finalchanctl', 'vichanctl'], + scripts=['infinityctl', 'onionctl'], install_requires=['urllib3'], python_requires='>=3.0' ) --- a/vichanctl +++ /dev/null @@ -1,23 +0,0 @@ -#!/usr/bin/env python3 -# Copyright 2016 ring -# Copying and distribution of this file, with or without modification, -# are permitted in any medium without royalty provided the copyright -# notice and this notice are preserved. This file is offered as-is, -# without any warranty. - -"""infinityctl variant for 8ch.pl (soon to become vichan.net)""" - -import os - -import infinitychan -import infinityctl - -infinitychan.dom = "https://8ch.pl" -infinitychan.mod = "https://8ch.pl/mod.php?" -infinitychan.sys = "https://8ch.pl" -infinitychan.media_base = "https://8ch.pl" -infinitychan.media = "https://8ch.pl/{board}/src/{tim}{ext}" -infinitychan.media_dedup = infinitychan.media -infinitychan.config = os.path.join(os.path.expanduser("~"), ".vichanctl") - -infinityctl.main()