Skip to content

Commit 09129bc

Browse files
committed
Added setup.py
1 parent 4b0ecfe commit 09129bc

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

setup.py

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#!/usr/bin/env python
2+
3+
from distutils.core import setup
4+
5+
setup(name='PCV',
6+
version='1.0',
7+
author='Jan Erik Solem',
8+
url='https://github.com/jesolem/PCV',
9+
packages=['PCV', 'PCV.classifiers', 'PCV.clustering', 'PCV.geometry',
10+
'PCV.imagesearch', 'PCV.localdescriptors', 'PCV.tools'],
11+
requires=['NumPy', 'Matplotlib', 'SciPy'],
12+
)

0 commit comments

Comments
 (0)