aboutsummaryrefslogtreecommitdiff
blob: 6a4df40e3a1b697d07640b96d3285cedf26f1eeb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup, find_packages

setup(name='Mastodon.py',
      version='1.0.0',
      description='Python wrapper for the Mastodon API',
      packages=['mastodon'],
      install_requires=['requests'],
      url='https://github.com/halcy/Mastodon.py',
      author='Lorenz Diener',
      author_email='[email protected]',
      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',
      ]
)
Powered by cgit v1.2.3 (git 2.41.0)