Skip to content

Commit

Permalink
add dev and docs setup.py commands
Browse files Browse the repository at this point in the history
  • Loading branch information
mcdonc committed Apr 19, 2012
1 parent 0a00a1f commit cee960e
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
4 changes: 4 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,7 @@ where=pyramid_debugtoolbar
nocapture=1
cover-package=pyramid_debugtoolbar
cover-erase=1

[aliases]
dev = develop easy_install pyramid_debugtoolbar[testing]
docs = develop easy_install pyramid_debugtoolbar[docs]
14 changes: 13 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,15 @@
'Pygments',
]

testing_extras = [
'nose',
'coverage',
]

docs_extras = [
'Sphinx',
]

setup(name='pyramid_debugtoolbar',
version='1.0.1',
description=('A package which provides an interactive HTML debugger '
Expand Down Expand Up @@ -55,7 +64,10 @@
include_package_data=True,
zip_safe=False,
install_requires=install_requires,
tests_require=install_requires,
extras_require = {
'testing':testing_extras,
'docs':docs_extras,
},
test_suite="pyramid_debugtoolbar",
entry_points='',
)

0 comments on commit cee960e

Please sign in to comment.