I am trying to install a python package from my organization's Bitbucket instance which I have been developing using the below commands:
$ python -m venv venv
$ source venv/bin/activate
(venv) $ pip install git+https://bitbucket.company.com/path/to/package.git
Even though I was able to install my python package
into venv
but I was expecting it to install the necessary dependencies which I have specified in requirements.txt
also!!!
What all changes I need to make to my python package
to install the dependencies also?
Below is my package
project structure:
.
├── pyproject.toml
├── README.md
├── requirements.txt
├── src
│ └── package
│ ├── __init__.py
│ └── main.py
└── tests
└── test_dummy.py
N.b., I am using hatchling
for building my python package