mirror of
https://github.com/BillyOutlast/OF-Scraper.git
synced 2026-07-01 12:17:25 -04:00
24 lines
999 B
Plaintext
Executable File
24 lines
999 B
Plaintext
Executable File
r"""
|
|
_____
|
|
_____/ ____\______ ________________ ____ ___________
|
|
/ _ \ __\/ ___// ___\_ __ \__ \ / _ \_/ __ \_ __ \
|
|
( <_> ) | \___ \\ \___| | \// __ \( <_> ) ___/| | \/
|
|
\____/|__| /____ >\___ >__| (____ /\____/ \___ >__|
|
|
\/ \/ \/ \/
|
|
"""
|
|
|
|
__title__ = 'ofscraper'
|
|
__author__ = 'datawhores'
|
|
__author_email__ = 'datawhores@riseup.net'
|
|
__description__ = 'A command-line program to quickly download,like or unlike posts, and more'
|
|
__url__ = 'https://github.com/datawhores/OF-Scraper'
|
|
__license__ = 'GNU General Public License v3 or later (GPLv3+)'
|
|
__copyright__ = 'Copyright 2023'
|
|
|
|
try:
|
|
from dunamai import Version,Pattern
|
|
__version__ = Version.from_git(pattern=Pattern.DefaultUnprefixed).serialize(format="{base}+{branch}.{commit}",metadata=False)
|
|
except:
|
|
import pkg_resources
|
|
__version__= pkg_resources.get_distribution('ofscraper').version
|