2016-11-24 14:11:07 +01:00
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
|
|
|
setup(name='Mastodon.py',
|
2017-03-15 11:17:51 +01:00
|
|
|
version='1.0.5',
|
2016-11-24 14:11:07 +01:00
|
|
|
description='Python wrapper for the Mastodon API',
|
|
|
|
packages=['mastodon'],
|
2016-11-25 23:30:30 +01:00
|
|
|
install_requires=['requests', 'dateutils'],
|
2016-11-24 20:40:23 +01:00
|
|
|
url='https://github.com/halcy/Mastodon.py',
|
|
|
|
author='Lorenz Diener',
|
|
|
|
author_email='lorenzd+mastodonpypypi@gmail.com',
|
|
|
|
license='MIT',
|
|
|
|
keywords='mastodon api microblogging',
|
|
|
|
classifiers=[
|
|
|
|
'Development Status :: 4 - Beta',
|
|
|
|
'Intended Audience :: Developers',
|
|
|
|
'Topic :: Communications',
|
|
|
|
'License :: OSI Approved :: MIT License',
|
|
|
|
'Programming Language :: Python :: 2',
|
|
|
|
'Programming Language :: Python :: 3',
|
|
|
|
]
|
|
|
|
)
|