aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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)