Commit bf8decbb authored by Tres Seaver's avatar Tres Seaver

Add 'setup.py dev' alias.

Runns 'setup.py develop' and installs testing dependencies.
parent 9b238330
...@@ -4,6 +4,9 @@ ...@@ -4,6 +4,9 @@
Unreleased Unreleased
---------- ----------
- Added ``setup.py dev`` alias (runs ``setup.py develop`` and installs
testing dependencies).
- Automated building the Sphinx docs via ``tox``. - Automated building the Sphinx docs via ``tox``.
- Fixed 'zconfig:' URIs under Python 2.7. The code worked around a bug in - Fixed 'zconfig:' URIs under Python 2.7. The code worked around a bug in
......
...@@ -7,3 +7,6 @@ where=zodburi ...@@ -7,3 +7,6 @@ where=zodburi
nocapture=1 nocapture=1
cover-package=zodburi cover-package=zodburi
cover-erase=1 cover-erase=1
[aliases]
dev = develop easy_install zodburi[testing]
...@@ -19,6 +19,7 @@ except: ...@@ -19,6 +19,7 @@ except:
requires = ['ZODB3'] requires = ['ZODB3']
tests_require = requires + ['mock'] tests_require = requires + ['mock']
testing_extras = tests_require + ['nose', 'coverage']
setup(name='zodburi', setup(name='zodburi',
version='1.2dev', version='1.2dev',
...@@ -48,4 +49,7 @@ setup(name='zodburi', ...@@ -48,4 +49,7 @@ setup(name='zodburi',
zconfig = zodburi.resolvers:zconfig_resolver zconfig = zodburi.resolvers:zconfig_resolver
memory = zodburi.resolvers:mapping_storage_resolver memory = zodburi.resolvers:mapping_storage_resolver
""", """,
extras_require = {
'testing': testing_extras,
},
) )
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment