tensormap icon indicating copy to clipboard operation
tensormap copied to clipboard

Add pyproject.toml for dependency management to the python backend

Open SahanDisa opened this issue 1 year ago • 2 comments

pyproject.toml is a new file format introduced to replace setup.py for managing dependencies in Python projects.

It was introduced as part of PEP 518 and PEP 621.

It’s a configuration file that is used by pip to install your package and its dependencies.

It has a simpler format compared to setup.py and is easier to read and maintain.

Here is an example of a pyproject.toml file:

[project]
name = "your-package-name"
version = "0.0.1"
description = "A brief description of your package"
authors = ["Your Name <[email protected]>"]

[project.dependencies]
dependency1 = "^1.0"
dependency2 = "^2.0"

How to run and perform an editable install

pip install -e .

SahanDisa avatar Jul 21 '23 05:07 SahanDisa

@SahanDisa @NipunaC95 @charithccmc I want to work on this issue. Please assign it to me

adityanarayanm095 avatar Oct 31 '23 12:10 adityanarayanm095

@SahanDisa can i still work on this issue?

sivangbagri avatar Dec 03 '23 07:12 sivangbagri