Mastodonplus.py/setup.py
2019-05-31 12:56:57 +02:00

38 líneas
1,1 KiB
Python

from setuptools import setup
test_deps = ['pytest', 'pytest-runner', 'pytest-cov', 'vcrpy', 'pytest-vcr', 'pytest-mock', 'requests-mock']
extras = {
"test": test_deps
}
setup(name='Mastodon.py',
version='1.4.2',
description='Python wrapper for the Mastodon API',
packages=['mastodon'],
install_requires=[
'requests>=2.4.2',
'python-dateutil',
'six',
'pytz',
'python-magic',
'decorator>=4.0.0',
'http_ece>=1.0.5',
'cryptography>=1.6.0',
'blurhash>=1.1.3',
],
tests_require=test_deps,
extras_require=extras,
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 :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Communications',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
])