7 líneas
194 B
Python
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'])
|