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

Initial commit

This commit is contained in:
Ivan Habunek
2017-04-12 16:42:04 +02:00
commit 40a0739227
9 changed files with 328 additions and 0 deletions

39
setup.py Normal file
View File

@@ -0,0 +1,39 @@
#!/usr/bin/env python
from setuptools import setup
with open("README.rst") as readme:
long_description = readme.read()
setup(
name='toot',
version='0.1.0',
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.6',
'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=[
'future'
],
entry_points={
'console_scripts': [
'toot=toot.console:main',
],
}
)