mirror of
https://github.com/hughrun/ephemetoot
synced 2025-02-11 17:00:54 +01:00
19 lines
675 B
Python
19 lines
675 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(name='ephemetoot',
|
|
version='2.1.0',
|
|
url='https://github.com/hughrun/ephemetoot',
|
|
license='GPL-3.0-or-later',
|
|
packages=find_packages(),
|
|
scripts=['bin/ephemetoot'],
|
|
install_requires=['Mastodon.py', 'pyyaml', 'requests'],
|
|
zip_safe=False,
|
|
author='Hugh Rundle',
|
|
author_email='hugh@hughrundle.net',
|
|
description='A command line tool for selectively deleting old toots.',
|
|
keywords='mastodon, mastodon api',
|
|
project_urls={
|
|
'Source Code': 'https://github.com/hughrun/ephemetoot',
|
|
'Documentation': 'https://github.com/hughrun/ephemetoot'
|
|
}
|
|
) |