Mastodonplus.py/setup.py

24 líneas
835 B
Python
Original Vista normal Històric

from setuptools import setup, find_packages
setup(name='Mastodon.py',
2017-06-16 01:29:12 +02:00
version='1.0.8',
description='Python wrapper for the Mastodon API',
packages=['mastodon'],
2017-04-10 07:48:57 +02:00
setup_requires=['pytest-runner'],
tests_require=['pytest'],
2017-08-21 16:26:02 +02:00
install_requires=['requests', 'python-dateutil', 'six'],
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=[
2017-06-16 01:29:12 +02:00
'Development Status :: 5 - Production/Stable',
2016-11-24 20:40:23 +01:00
'Intended Audience :: Developers',
'Topic :: Communications',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
]
)