aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorD Anzorge <[email protected]>2016-11-24 14:11:07 +0100
committerD Anzorge <[email protected]>2016-11-24 14:11:07 +0100
commit4bf752319763a8aeb735c3ac70c2bcb571f928b1 (patch)
tree92fbf1a2cb1812d8a8c217a5726b2626d8ea340e
parentc40caccb43cb448a72086da0d59ed21c0202e285 (diff)
downloadmastodon.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.cfg7
-rw-r--r--setup.py6
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]
2universal=1
3
4[build_sphinx]
5source-dir = docs
6build-dir = docs/build
7all_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 @@
1from setuptools import setup, find_packages
2
3setup(name='Mastodon.py',
4 description='Python wrapper for the Mastodon API',
5 packages=['mastodon'],
6 install_requires=['requests'])
Powered by cgit v1.2.3 (git 2.41.0)