summaryrefslogtreecommitdiff
path: root/setup.cfg
diff options
context:
space:
mode:
authorRobert Collins <robertc@robertcollins.net>2015-05-05 10:45:22 +1200
committerRobert Collins <robertc@robertcollins.net>2015-05-05 11:18:00 +1200
commit915b2b604c0e9b97e813711c035dfd13682fb6df (patch)
treeeeccb290c1237aeec8773338e2071977009c04bb /setup.cfg
parent6e59b74343cd8f7ad80b8bcbeca03cd14ec7b147 (diff)
downloadtesttools-915b2b604c0e9b97e813711c035dfd13682fb6df.tar.gz
Switch to pbr as a build system
This automates the manual dance around version numbers for less maintenance pain. The main visible changes are: - requirements are in requirements.txt for now - tags must be just x.y.z not testtools-x.y.z - version information in __init__ is dynamically looked up. - we can probably cleanup a bunch of our bootstrap import glue but in the interest of clear reviews, and avoiding surprises, I'm leaving that alone for now. Change-Id: Ia54f681b50764a94ada68a6b2ac1bc77bfb619c5
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg17
1 files changed, 13 insertions, 4 deletions
diff --git a/setup.cfg b/setup.cfg
index 3e210fa..2461767 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -1,7 +1,16 @@
-[test]
-test_module = testtools.tests
-buffer=1
-catch=1
+[metadata]
+name = testtools
+summary = Extensions to the Python standard library unit testing framework
+home-page = https://github.com/testing-cabal/testtools
+description-file = doc/overview.rst
+author = Jonathan M. Lange
+author-email = jml+testtools@mumak.net
+classifier =
+ License :: OSI Approved :: MIT License
+ Programming Language :: Python :: 3
+
+[files]
+packages = testtools
[bdist_wheel]
universal = 1