summaryrefslogtreecommitdiff
path: root/setup.cfg
diff options
context:
space:
mode:
authorEli Collins <elic@assurancetechnologies.com>2011-06-22 17:51:37 -0400
committerEli Collins <elic@assurancetechnologies.com>2011-06-22 17:51:37 -0400
commit3b6320894d5c2f1e058dc6098151a59695f9382b (patch)
treeefd0c6f83dc1a98a3425deada1fe2eab7e971d5a /setup.cfg
parent796999f975f687e6a582c2bcd64cbca2227b3473 (diff)
downloadpasslib-3b6320894d5c2f1e058dc6098151a59695f9382b.tar.gz
installation updates
* updated install instructions to account for python 3 support * removed dependancy on distribute/setuptools: - no longer using find_packages() - using build_py_2to3 cmdclass as fallback if distribute's use_2to3 not available * some tweaks to make "setup.py test" work properly
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg10
1 files changed, 9 insertions, 1 deletions
diff --git a/setup.cfg b/setup.cfg
index 9f9f9c2..93a527d 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -1,10 +1,18 @@
[egg_info]
+# XXX: should stop relying on this section,
+# it's only used by setuptools/distribute,
+# and will be phased out in distutils2
tag_build = a1.dev
tag_date = true
- ; wish tag_date didn't use a "-" prefix
[upload]
sign = true
[upload_docs]
upload_dir = docs/_build/html
+
+[test]
+test_suite = nose.collector
+
+[nosetests]
+where = passlib/tests