summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam Thursfield <sam.thursfield@codethink.co.uk>2015-05-26 16:31:51 +0100
committerSam Thursfield <sam.thursfield@codethink.co.uk>2015-05-26 16:31:51 +0100
commitbdd6ad51cb13018a037ff06b54c3e4ee98e71785 (patch)
treee1df74a527962ab4d471e9f4fbeb83b915cdf28f
parent343157388c8471546da8ceb6e7ffc2c3da840647 (diff)
downloadsandboxlib-bdd6ad51cb13018a037ff06b54c3e4ee98e71785.tar.gz
Add simple setup.py using the 'pbr' module
-rw-r--r--setup.cfg10
-rw-r--r--setup.py8
2 files changed, 18 insertions, 0 deletions
diff --git a/setup.cfg b/setup.cfg
new file mode 100644
index 0000000..abe7866
--- /dev/null
+++ b/setup.cfg
@@ -0,0 +1,10 @@
+[metadata]
+name = sandboxlib
+version = 0.1
+summary = Sandboxing Library for Python
+description-file =
+ README.mdwn
+
+[files]
+packages =
+ sandboxlib
diff --git a/setup.py b/setup.py
new file mode 100644
index 0000000..aa2d8a0
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,8 @@
+#!/usr/bin/env python
+
+from setuptools import setup
+
+setup(
+ setup_requires=['pbr'],
+ pbr=True,
+)