Top "Setup.py" questions

setup.

python setup.py configuration to install files in custom directories

I want to create a setup.py which would install my files into custom directories. I have a certain prefix, …

python configuration installation setup.py
pip install PyQt IOError

I'm trying to install PyQt package with pip, but I get this error: ~$ pip install PyQt Downloading/unpacking PyQt Downloading …

python pyqt pip ioerror setup.py
Cython setup.py for several .pyx

I would like to cythonize faster. Code for one .pyx is from distutils.core import setup from Cython.Build import …

python compilation installation cython setup.py
How to fix 'Could not find a version that satisfies the requirement' for install_requires list when pip installing in custom package?

I am trying to build my own Python package (installable by pip) using the twine package. This is all going …

python-3.x pip setup.py pypi twine
Install python packages offline on server

I want to install some packages on the server which does not access to internet. so I have to take …

python pip setup.py installation-package
Installing dependencies of a local dependency with pipenv

Background We have project with the following high-level directory structure* ./datascience/ ├── core │ └── setup.py ├── notebooks │ └── Pipfile └── web └── Pipfile *Excluded all …

python dependency-management setup.py pipenv pipfile
pip install . creates only the dist-info not the package

I am trying to make a python package which I want to install using pip install . locally. The package name …

python pip package setuptools setup.py
Python Packaging: Data files are put properly in tar.gz file but are not installed to virtual environment

I can't properly install the project package_fiddler to my virtual environment. I have figured out that MANIFEST.in is …

python packaging setuptools setup.py
How to include and install local dependencies in setup.py in Python?

I am creating a setup.py to distribute my application. This application has a number of dependencies which can be …

python setuptools setup.py
Specifying optional dependencies in pypi python setup.py

How do I specify optional dependencies in python's setup.py ? Here's my stab at specifying an optional dependency for an …

python setup.py pypi