aboutsummaryrefslogblamecommitdiff
blob: 56b2406f3368c2da165f290d9b4a0bbbfeec2b2b (plain) (tree)
1
2
3
4
5
6
7
8
9
                            

                         
                      

                                                        
                                       
                                                                    
                                                                      





                                                      
                                                        




                                                   
        
from setuptools import setup

setup(name='Mastodon.py',
      version='1.1.2',
      description='Python wrapper for the Mastodon API',
      packages=['mastodon'],
      setup_requires=['pytest-runner'],
      tests_require=['pytest', 'pytest-cov', 'vcrpy', 'pytest-vcr'],
      install_requires=['requests', 'python-dateutil', 'six', 'pytz'],
      url='https://github.com/halcy/Mastodon.py',
      author='Lorenz Diener',
      author_email='[email protected]',
      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',
      ])
Powered by cgit v1.2.3 (git 2.41.0)