2017-04-12 16:42:04 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
from setuptools import setup
|
|
|
|
|
2017-12-29 12:10:40 +01:00
|
|
|
long_description = """
|
2019-09-03 16:12:16 +02:00
|
|
|
Toot is a CLI and TUI tool for interacting with Mastodon instances from the
|
|
|
|
command line.
|
|
|
|
|
2017-12-29 12:10:40 +01:00
|
|
|
Allows posting text and media to the timeline, searching, following, muting
|
|
|
|
and blocking accounts and other actions.
|
|
|
|
"""
|
2017-04-12 16:42:04 +02:00
|
|
|
|
|
|
|
setup(
|
|
|
|
name='toot',
|
2022-11-12 09:21:00 +01:00
|
|
|
version='0.28.1',
|
2017-12-29 12:10:40 +01:00
|
|
|
description='Mastodon CLI client',
|
|
|
|
long_description=long_description.strip(),
|
2017-04-12 16:42:04 +02:00
|
|
|
author='Ivan Habunek',
|
|
|
|
author_email='ivan@habunek.com',
|
|
|
|
url='https://github.com/ihabunek/toot/',
|
2019-02-13 13:14:05 +01:00
|
|
|
project_urls={
|
|
|
|
'Documentation': 'https://toot.readthedocs.io/en/latest/',
|
|
|
|
'Issue tracker': 'https://github.com/ihabunek/toot/issues/',
|
|
|
|
},
|
2017-04-12 16:42:04 +02:00
|
|
|
keywords='mastodon toot',
|
2017-12-12 11:41:03 +01:00
|
|
|
license='GPLv3',
|
2017-04-12 16:42:04 +02:00
|
|
|
classifiers=[
|
|
|
|
'Development Status :: 4 - Beta',
|
2019-02-13 13:14:05 +01:00
|
|
|
'Environment :: Console :: Curses',
|
|
|
|
'Environment :: Console',
|
2017-05-08 09:17:32 +02:00
|
|
|
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
|
2017-04-12 16:42:04 +02:00
|
|
|
'Programming Language :: Python :: 3',
|
|
|
|
'Programming Language :: Python :: 3.4',
|
|
|
|
'Programming Language :: Python :: 3.5',
|
|
|
|
'Programming Language :: Python :: 3.6',
|
2019-07-30 16:16:03 +02:00
|
|
|
'Programming Language :: Python :: 3.7',
|
2017-04-12 16:42:04 +02:00
|
|
|
],
|
2020-06-15 21:27:41 +02:00
|
|
|
packages=['toot', 'toot.tui'],
|
2019-07-30 16:16:03 +02:00
|
|
|
python_requires=">=3.4",
|
2017-08-26 15:56:41 +02:00
|
|
|
install_requires=[
|
|
|
|
"requests>=2.13,<3.0",
|
|
|
|
"beautifulsoup4>=4.5.0,<5.0",
|
2019-01-02 13:22:06 +01:00
|
|
|
"wcwidth>=0.1.7,<2.0",
|
2019-08-24 11:20:31 +02:00
|
|
|
"urwid>=2.0.0,<3.0",
|
2017-08-26 15:56:41 +02:00
|
|
|
],
|
2017-04-12 16:42:04 +02:00
|
|
|
entry_points={
|
|
|
|
'console_scripts': [
|
|
|
|
'toot=toot.console:main',
|
|
|
|
],
|
2020-01-23 13:14:02 +01:00
|
|
|
}
|
2017-04-12 16:42:04 +02:00
|
|
|
)
|