Mastodonplus.py/setup.py
D Anzorge 4bf7523197 Add setup files
Minimal setup files which should allow installation as a package and
generation of wheel files.

Note that there is currently no version number.
2016-11-24 14:11:07 +01:00

7 líneas
194 B
Python

from setuptools import setup, find_packages
setup(name='Mastodon.py',
description='Python wrapper for the Mastodon API',
packages=['mastodon'],
install_requires=['requests'])