I have created setup.py for my project. Attached below. "-e" run setup.py file. May I write "-r requirements.txt" at the end so that I might create env including my requirements along with dependencies?
name: mypro
dependencies:
  - python==3.7
  - pip
  - matplotlib
  - opencv
  - cudnn
  - cudatoolkit==10.1.243
  - pip:
    - tensorflow-gpu==2.1.0rc1
    - lxml
    - tqdm
    - -e .
 
    