diff options
-rw-r--r-- | setup.cfg | 7 | ||||
-rw-r--r-- | setup.py | 6 |
2 files changed, 13 insertions, 0 deletions
diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..14c6824 --- /dev/null +++ b/setup.cfg | |||
@@ -0,0 +1,7 @@ | |||
1 | [bdist_wheel] | ||
2 | universal=1 | ||
3 | |||
4 | [build_sphinx] | ||
5 | source-dir = docs | ||
6 | build-dir = docs/build | ||
7 | all_files = 1 | ||
diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..4b5b11f --- /dev/null +++ b/setup.py | |||
@@ -0,0 +1,6 @@ | |||
1 | from setuptools import setup, find_packages | ||
2 | |||
3 | setup(name='Mastodon.py', | ||
4 | description='Python wrapper for the Mastodon API', | ||
5 | packages=['mastodon'], | ||
6 | install_requires=['requests']) | ||