File tree 2 files changed +31
-2
lines changed
2 files changed +31
-2
lines changed Original file line number Diff line number Diff line change
1
+ package :
2
+ name : gridmap
3
+ version : 0.15.0
4
+
5
+ source :
6
+ path : ../../
7
+
8
+ build :
9
+ number : 0
10
+ script :
11
+ - cd $SRC_DIR
12
+ - {{ PYTHON }} -m pip install . --no-deps -vv
13
+ entry_points :
14
+ - gridmap_web = gridmap.web:main
15
+
16
+ requirements :
17
+ host :
18
+ - python
19
+ - pip
20
+ run :
21
+ - python
22
+ - cloudpickle
23
+ - drmaa
24
+ - psutil >=2.0
25
+ - pyzmq
26
+
27
+ test :
28
+ imports :
29
+ - gridmap
Original file line number Diff line number Diff line change 21
21
# along with GridMap. If not, see <http://www.gnu.org/licenses/>.
22
22
import sys
23
23
24
- from setuptools import setup
24
+ from setuptools import find_packages , setup
25
25
26
26
# To get around the fact that you can't import stuff from packages in setup.py
27
27
exec (compile (open ('gridmap/version.py' ).read (), 'gridmap/version.py' , 'exec' ))
@@ -49,7 +49,7 @@ def requirements():
49
49
author = 'Daniel Blanchard' ,
50
50
51
51
license = 'GPL' ,
52
- packages = [ 'gridmap' ] ,
52
+ packages = find_packages ( exclude = [ "tests" ]) ,
53
53
install_requires = requirements (),
54
54
entry_points = {'console_scripts' : ['gridmap_web = gridmap.web:main' ]},
55
55
classifiers = ['Intended Audience :: Science/Research' ,
You can’t perform that action at this time.
0 commit comments