aboutsummaryrefslogtreecommitdiffstats
path: root/setup.cfg
diff options
context:
space:
mode:
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg21
1 files changed, 21 insertions, 0 deletions
diff --git a/setup.cfg b/setup.cfg
new file mode 100644
index 0000000..0941bed
--- /dev/null
+++ b/setup.cfg
@@ -0,0 +1,21 @@
+# -- CONVENIENCE: Use pytest-runner (ptr) as test runner.
+[aliases]
+docs = build_sphinx
+test = pytest
+
+[build_sphinx]
+source-dir = docs/
+build-dir = build/docs
+builder = html
+all_files = true
+
+[easy_install]
+# set the default location to install packages
+# install_dir = eggs
+# find_links = https://github.com/jenisys/parse_type
+
+[upload_docs]
+upload-dir = build/docs/html
+
+[bdist_wheel]
+universal = 1