Skip to content

Commit

Permalink
Merge pull request #11 from enthought/dev_setup
Browse files Browse the repository at this point in the history
DOC: add some basic doc for dev setup.
  • Loading branch information
cournape committed Feb 24, 2014
2 parents 4cd6807 + 1ad103d commit c853e5b
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 0 deletions.
3 changes: 3 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
include README.rst
include dev_requirements.txt
include tox.ini
11 changes: 11 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,14 @@ Example of usage::

Note: this implements only a very small subset of pywin32, for internal needs
at Enthought. We do welcome additional features, though.

Development setup
=================

The following should be good enough::

pip install -r dev_requirements.txt
python setup.py develop

Note: because of the pywin32 dependency for tests, you most likely want to
create a virtualenv with --system-site-packages if you use virtualenv.
3 changes: 3 additions & 0 deletions dev_requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
nose
pywin32
tox>=1.6
7 changes: 7 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
[tox]
envlist = py27

[testenv]
deps= -rdev_requirements.txt
commands=python -m nose.core win32ctypes
sitepackages = True

0 comments on commit c853e5b

Please sign in to comment.