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.
pull/1/head
D Anzorge 2016-11-24 14:11:07 +01:00
rodzic c40caccb43
commit 4bf7523197
2 zmienionych plików z 13 dodań i 0 usunięć

7
setup.cfg 100644
Wyświetl plik

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

6
setup.py 100644
Wyświetl plik

@ -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'])