4bf7523197
Minimal setup files which should allow installation as a package and generation of wheel files. Note that there is currently no version number.
6 líneas
194 B
Python
6 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'])
|