setup.py - toot - Unnamed repository; edit this file 'description' to name the … | |
Log | |
Files | |
Refs | |
LICENSE | |
--- | |
setup.py (1258B) | |
--- | |
1 #!/usr/bin/env python | |
2 | |
3 from setuptools import setup | |
4 | |
5 long_description = """ | |
6 toot is a commandline tool for interacting with Mastodon social networks. | |
7 Allows posting text and media to the timeline, searching, following, mut… | |
8 and blocking accounts and other actions. | |
9 Contains an experimental curses application for reading the timeline. | |
10 """ | |
11 | |
12 setup( | |
13 name='toot', | |
14 version='0.17.1', | |
15 description='Mastodon CLI client', | |
16 long_description=long_description.strip(), | |
17 author='Ivan Habunek', | |
18 author_email='[email protected]', | |
19 url='https://github.com/ihabunek/toot/', | |
20 keywords='mastodon toot', | |
21 license='GPLv3', | |
22 classifiers=[ | |
23 'Development Status :: 4 - Beta', | |
24 'License :: OSI Approved :: GNU General Public License v3 (GPLv3… | |
25 'Programming Language :: Python :: 3', | |
26 'Programming Language :: Python :: 3.3', | |
27 'Programming Language :: Python :: 3.4', | |
28 'Programming Language :: Python :: 3.5', | |
29 'Programming Language :: Python :: 3.6', | |
30 ], | |
31 packages=['toot', 'toot.ui'], | |
32 install_requires=[ | |
33 "requests>=2.13,<3.0", | |
34 "beautifulsoup4>=4.5.0,<5.0", | |
35 ], | |
36 entry_points={ | |
37 'console_scripts': [ | |
38 'toot=toot.console:main', | |
39 ], | |
40 } | |
41 ) |