pulsepm / pulse

Unofficial package manager written in python.
MIT License
4 stars 0 forks source link

pulse install realization #20

Closed Ykpauneu closed 7 months ago

Ykpauneu commented 7 months ago

Example of the install comand:

pulse.py install Ykpauneu/pmtest 

In that case the module uses default git branch (might be main, stable, master, e.t.c)

To specify version:

pulse.py install Ykpauneu/pmtest=1.0.0

Search for a release and then install it. Same for branch or commit (pmtest@main/pmtest-632fwf)

Ykpauneu commented 7 months ago

Dependencies also support @, -, == tags. It's also possible to specify nothing at all

[project]
name = "ee"
publisher = "Mergevos"
repo = "e"
[project.dependencies]
dependencies = [
  'Ykpauneu/pmtest@dev',
]