-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
DIStributional SEmantics Composition Toolkit | ||
============================================ | ||
|
||
Installation | ||
------------ | ||
|
||
To install the package run: | ||
|
||
pip install dissect | ||
|
||
Development | ||
----------- | ||
|
||
To run the tests execute:: | ||
|
||
python setup.py test | ||
|
||
To install the package in an isolated environment for development run:: | ||
|
||
virtualenv . | ||
source bin/activate | ||
|
||
pip install -e . | ||
pip install pytest # And any other tools you find useful. | ||
|
||
Now you are ready to develop and test your changes:: | ||
|
||
py.test src/unitest | ||
|
||
If you want to execute some of the tests run (for example, similarity related):: | ||
|
||
py.test src/unitest -k similarity | ||
|
||
Read py.test documentation and have fun coding! |