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)
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
How to import from subpackage (without exposing) when building using setuptools?
I am packaging a personal Python project and uploading it to pypi. It has the following structure:
root
├── package
│ ├── __init__.py
│ ├── foo.py
│ └── subpackage
│ ├── bar.py
│ └──...
peguerosdc
Votes: 0
Answers: 0
python setup.py install won't keep data_files
I am currently so confused about installation of my own Python packages... Between setup.pys, sdists and wheels, no matter what I do, I can't seem to achieve what I want - which is to have a bunch of ...
lte__
Votes: 0
Answers: 0