File tree Expand file tree Collapse file tree 3 files changed +17
-2
lines changed Expand file tree Collapse file tree 3 files changed +17
-2
lines changed Original file line number Diff line number Diff line change
1
+ .PHONY : test
2
+
3
+ clean :
4
+ sudo python setup.py clean
5
+ rm simhash/table.cpp
6
+
7
+ install :
8
+ sudo python setup.py install
9
+
10
+ uninstall :
11
+ sudo pip uninstall simhash -y
12
+
13
+ test :
14
+ python test/test.py
15
+
Original file line number Diff line number Diff line change 3
3
# Some dependencies
4
4
sudo apt-get update
5
5
sudo apt-get install -y libjudy-dev make g++ gdb git python-dev python-pip
6
- sudo pip install cython
6
+ sudo pip install cython==0.22.1
7
7
8
8
(
9
9
cd /vagrant/
Original file line number Diff line number Diff line change 26
26
packages = ['simhash' ],
27
27
package_dir = {'simhash' : 'simhash' },
28
28
cmdclass = {'build_ext' : build_ext },
29
- dependencies = [],
29
+ install_requires = [],
30
30
ext_modules = ext_modules ,
31
31
classifiers = [
32
32
'Programming Language :: Python' ,
You can’t perform that action at this time.
0 commit comments