0
0
mirror of https://github.com/ihabunek/toot.git synced 2025-10-21 19:44:16 -04:00

Setup click, migrate read commands

This commit is contained in:
Ivan Habunek
2023-11-26 18:00:57 +01:00
parent 1c5abb8419
commit 9ecfa79db8
9 changed files with 376 additions and 82 deletions

View File

@@ -34,6 +34,7 @@ setup(
packages=['toot', 'toot.tui', 'toot.tui.richtext', 'toot.utils'],
python_requires=">=3.7",
install_requires=[
"click~=8.1",
"requests>=2.13,<3.0",
"beautifulsoup4>=4.5.0,<5.0",
"wcwidth>=0.1.7",
@@ -62,7 +63,7 @@ setup(
},
entry_points={
'console_scripts': [
'toot=toot.console:main',
'toot=toot.cli:cli',
],
}
)