Skip to content

Commit

Permalink
Add 'setup.py docs' alias.
Browse files Browse the repository at this point in the history
Runs 'setup.py develop' and installs Sphinx and dependencies.
  • Loading branch information
tseaver committed Feb 28, 2013
1 parent 3bf8bf0 commit 7c1d163
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
6 changes: 4 additions & 2 deletions CHANGES.txt
Expand Up @@ -5,10 +5,12 @@ CHANGES
4.0.0 (unreleased)
------------------

- Added 'setup.py dev' alias (runs ``setup.py develop`` plus installs
- Added ``setup.py docs`` alias (installs ``Sphinx`` and dependencies).

- Added ``setup.py dev`` alias (runs ``setup.py develop`` plus installs
``nose`` and ``coverage``).

- Dropped spurios ``test`` extra requirement on ``zope.testing``.
- Dropped spurious ``test`` extra requirement on ``zope.testing``.

- 100% unit test coverage.

Expand Down
1 change: 1 addition & 0 deletions setup.cfg
Expand Up @@ -7,3 +7,4 @@ where=src

[aliases]
dev = develop easy_install zope.sequencesort[testing]
docs = easy_install zope.sequencesort[docs]
3 changes: 2 additions & 1 deletion setup.py
Expand Up @@ -58,7 +58,8 @@ def read(*rnames):
packages=find_packages('src'),
package_dir = {'': 'src'},
namespace_packages=['zope'],
extras_require={'testing': ['nose', 'coverage'],
extras_require={'docs': ['Sphinx'],
'testing': ['nose', 'coverage'],
},
install_requires = ['setuptools'],
include_package_data=True,
Expand Down

0 comments on commit 7c1d163

Please sign in to comment.