1
0
mirror of https://github.com/ihabunek/toot.git synced 2024-06-23 06:25:26 +00:00
toot/setup.py

41 lines
1.1 KiB
Python
Raw Normal View History

2017-04-12 14:42:04 +00:00
#!/usr/bin/env python
from setuptools import setup
with open("README.rst") as readme:
long_description = readme.read()
setup(
name='toot',
2017-04-24 07:39:31 +00:00
version='0.9.1',
2017-04-12 14:42:04 +00: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',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'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'],
install_requires=[
'requests>=2.13,<3.0',
'beautifulsoup4>=4.5.0,<5.0',
'future>=0.16',
2017-04-12 14:42:04 +00:00
],
entry_points={
'console_scripts': [
'toot=toot.console:main',
],
}
)