2017-04-12 16:42:04 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
from setuptools import setup
|
|
|
|
|
|
|
|
with open("README.rst") as readme:
|
|
|
|
long_description = readme.read()
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name='toot',
|
2017-12-12 11:12:59 +01:00
|
|
|
version='0.15.1',
|
2017-04-12 16:42:04 +02:00
|
|
|
description='Interact with Mastodon social networks from the command line.',
|
|
|
|
long_description=long_description,
|
|
|
|
author='Ivan Habunek',
|
|
|
|
author_email='ivan@habunek.com',
|
|
|
|
url='https://github.com/ihabunek/toot/',
|
|
|
|
keywords='mastodon toot',
|
|
|
|
license='MIT',
|
|
|
|
classifiers=[
|
|
|
|
'Development Status :: 4 - Beta',
|
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.3',
|
|
|
|
'Programming Language :: Python :: 3.4',
|
|
|
|
'Programming Language :: Python :: 3.5',
|
|
|
|
'Programming Language :: Python :: 3.6',
|
|
|
|
],
|
|
|
|
packages=['toot'],
|
2017-08-26 15:56:41 +02:00
|
|
|
install_requires=[
|
|
|
|
"requests>=2.13,<3.0",
|
|
|
|
"beautifulsoup4>=4.5.0,<5.0",
|
|
|
|
],
|
2017-04-12 16:42:04 +02:00
|
|
|
entry_points={
|
|
|
|
'console_scripts': [
|
|
|
|
'toot=toot.console:main',
|
|
|
|
],
|
|
|
|
}
|
|
|
|
)
|