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
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
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
Why does `python setup.py sdist` copy the entire directory into the dist file?
I am perplexed why this setup.py file
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
with open('README.rst', 'r', encoding='utf-8') as file:
readme = file.read()
setup(
na...
Freiburgermsu
Votes: 0
Answers: 1