python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
How can I make a Python package developed with Poetry available on conda-forge (or even on my personal conda channel)?
I have developed my first Python package using Poetry as a dependency management and packaging tool.
Publishing my work to PyPI has been as easy as running:
poetry publish --build
Now, I'd like to ma...

Luigi
Votes: 0
Answers: 2
pip ignores python_requires field in setup
I have the following in my setup.cfg file:
[metadata]
name = mathsom
python_requires = '>=3.8'
...
Problem is that I created an enviroment with Python 3.7 and installation had no problems. Install...
Oliver Mohr Bonometti
Votes: 0
Answers: 1
Numpy install requirement on package fails on pip install from PyPI but not from .whl
I recently build my first python package and tried to test distribution with test.pypi.org (Github repo Test PyPI)
Code for building the dist:
python setup.py sdist bdist_wheel
Code for uploading to ...
Oliver Mohr Bonometti
Votes: 0
Answers: 1
Cant upload to PyPi
Im trying to upload my programming language project with pypi, and i have an error while running py -m twine upload --repository testpypi dist/*
i get an error in cmd, saying:
myemail is an invalid va...

DominikXZC
Votes: 0
Answers: 0