Mastodon.py/setup.py

23 wiersze
841 B
Python
Czysty Zwykły widok Historia

2017-09-05 20:59:32 +00:00
from setuptools import setup
setup(name='Mastodon.py',
2017-11-21 13:53:32 +00:00
version='1.1.2',
description='Python wrapper for the Mastodon API',
packages=['mastodon'],
2017-04-10 05:48:57 +00:00
setup_requires=['pytest-runner'],
2017-11-26 23:39:53 +00:00
tests_require=['pytest', 'pytest-cov'],
2017-09-05 20:59:32 +00:00
install_requires=['requests', 'python-dateutil', 'six', 'pytz'],
2016-11-24 19:40:23 +00: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-15 23:29:12 +00:00
'Development Status :: 5 - Production/Stable',
2016-11-24 19:40:23 +00:00
'Intended Audience :: Developers',
'Topic :: Communications',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
2017-09-05 20:59:32 +00:00
])