File tree Expand file tree Collapse file tree 4 files changed +23
-44
lines changed Expand file tree Collapse file tree 4 files changed +23
-44
lines changed Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -8,52 +8,47 @@ source:
8
8
# git_tag: master
9
9
# git_url: file://c:/Users/gdm/devel/larray/.git
10
10
11
- # build:
12
- # If this is a new build for the same version, increment the build
13
- # number. If you do not include this key, it defaults to 0.
14
- # number: 1
11
+ build :
12
+ # If this is a new build for the same version, increment the build number
13
+ number : 0
14
+ script : " {{ PYTHON }} -m pip install . --no-deps --ignore-installed -vvv "
15
15
16
16
requirements :
17
17
build :
18
+ - pip
18
19
- python
19
- - setuptools
20
- - numpy >=1.10
21
- - pandas >=0.13.1
22
- - pytest-runner
23
20
24
21
run :
25
22
- python
26
23
- numpy >=1.10
27
24
- pandas >=0.13.1
28
- - pytest-runner
29
25
30
26
test :
31
27
# requires:
32
28
# - pytest
33
- # - pytest-runner
29
+ # - pytables
34
30
35
31
imports :
36
32
- larray
37
33
38
34
# commands:
39
- # - pytest
40
-
41
- # commands:
42
- # You can put test commands to be run here. Use this to test that the
43
- # entry points work.
44
-
45
- # You can also put a file called run_test.py in the recipe that will be run
46
- # at test time.
47
-
48
- # requires:
49
- # Put any additional test requirements here. For example
50
- # - nose
35
+ # # You can also put a file called run_test.py in the recipe that will be run# at test time.
36
+ # - pytest --pyargs larray
51
37
52
38
about :
53
39
home : http://github.com/larray-project/larray
54
- license : GPL
40
+ license : GPL-3.0
41
+ license_family : GPL
42
+ license_file : COPYING
55
43
summary : " Labeled N-dimensional array."
44
+ # doc_url:
45
+ # dev_url:
46
+
47
+ extra :
48
+ recipe-maintainers :
49
+ - alixdamman
50
+ - gdementen
56
51
57
52
# See
58
- # http ://docs.continuum. io/conda/ build.html for
59
- # more information about meta.yaml
53
+ # https ://conda. io/docs/user-guide/tasks/ build-packages/index .html
54
+ # for more information about meta.yaml
Original file line number Diff line number Diff line change @@ -14,9 +14,9 @@ def readlocal(fname):
14
14
AUTHOR_EMAIL = '[email protected] '
15
15
DESCRIPTION = "N-D labeled arrays in Python"
16
16
LONG_DESCRIPTION = readlocal ("README.rst" )
17
+ SETUP_REQUIRES = []
17
18
INSTALL_REQUIRES = ['numpy >= 1.10' , 'pandas >= 0.13.1' ]
18
19
TESTS_REQUIRE = ['pytest' , 'pytest-pep8' ]
19
- SETUP_REQUIRES = ['pytest-runner' ]
20
20
21
21
LICENSE = 'GPLv3'
22
22
URL = 'https://github.com/larray-project/larray'
@@ -47,10 +47,10 @@ def readlocal(fname):
47
47
classifiers = CLASSIFIERS ,
48
48
description = DESCRIPTION ,
49
49
long_description = LONG_DESCRIPTION ,
50
+ setup_requires = SETUP_REQUIRES ,
50
51
install_requires = INSTALL_REQUIRES ,
51
52
tests_require = TESTS_REQUIRE ,
52
- setup_requires = SETUP_REQUIRES ,
53
53
url = URL ,
54
54
packages = find_packages (),
55
- include_package_data = True ,
55
+ include_package_data = True ,
56
56
)
You can’t perform that action at this time.
0 commit comments