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.
This commit is contained in:
D Anzorge 2016-11-24 14:11:07 +01:00
pare c40caccb43
commit 4bf7523197
S'han modificat 2 arxius amb 13 adicions i 0 eliminacions

7
setup.cfg Normal file
Veure arxiu

@ -0,0 +1,7 @@
[bdist_wheel]
universal=1
[build_sphinx]
source-dir = docs
build-dir = docs/build
all_files = 1

6
setup.py Normal file
Veure arxiu

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