python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Using poetry and pip to install dependencies with private repositories
We are currently using poetry for developing our python packages. Since we do have a private artifactory we have the following pyproject.toml things set:
[[tool.poetry.source]]
name = "main-priva...
HFinch
Votes: 0
Answers: 2
PEP 517 method to specify build requirements is not working in poetry
How can I specify the "build system" requirements in poetry? I think PEP517 deals with this, but I can't get it to work.
I am using poetry to manage my project. One of my project's dependenc...
John
Votes: 0
Answers: 1
Getting TypeError: argument: 'self' missing, while working with poetry and CLI
I am using poetry and sys.argv.
I wrote the code in a OOP manner.
While I am running code from CLI, I am getting an error as shown below.
Traceback (most recent call last): File "<string>...
pankaj bhagchandani
Votes: 0
Answers: 1
Makefile - How should I extract the version number embedded in `pyproject.toml`?
I have a python project with a pyproject.toml file. Typically I store the project's version number in pyproject.toml like this:
% grep version pyproject.toml
version = "0.0.2"
%
I want to ...
Mike Pennington
Votes: 0
Answers: 3