We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8edecab commit 72f791dCopy full SHA for 72f791d
2 files changed
cli/setup.py
@@ -25,6 +25,6 @@
25
version=metadata["version"],
26
description=metadata["description"],
27
python_requires=options["python_requires"],
28
- packages=find_packages(where=os.path.join(os.path.dirname(__file__), "..")),
+ packages=["."],
29
entry_points=entry_points,
30
)
conda-recipe/meta.yaml
@@ -65,6 +65,7 @@ outputs:
65
script: |
66
cd cli
67
python -m pip install . --no-deps --ignore-installed --prefix=$PREFIX
68
+ cd ..
69
70
requirements:
71
build:
@@ -88,7 +89,7 @@ outputs:
88
89
# pure-Python wrapper) into the test environment, so the
90
# test can import it.
91
source_files:
- - ../../tests/python/*.py
92
+ - tests/python/*.py
93
94
# Invoke pytest on the copied file(s).
95
commands:
0 commit comments