diff options
author | D Anzorge <[email protected]> | 2016-11-24 14:11:07 +0100 |
---|---|---|
committer | D Anzorge <[email protected]> | 2016-11-24 14:11:07 +0100 |
commit | 4bf752319763a8aeb735c3ac70c2bcb571f928b1 (patch) | |
tree | 92fbf1a2cb1812d8a8c217a5726b2626d8ea340e | |
parent | c40caccb43cb448a72086da0d59ed21c0202e285 (diff) | |
download | mastodon.py-4bf752319763a8aeb735c3ac70c2bcb571f928b1.tar.gz |
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.
-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']) | ||