Skip to content Skip to sidebar Skip to footer
Showing posts with the label Setuptools

Easy_install Lxml On Python 2.7 On Windows

I'm using python 2.7 on Windows. How come the following error occurs when I try to install [lxm… Read more Easy_install Lxml On Python 2.7 On Windows

Pkg_resources.distributionnotfound When Using A Module Installed From A Bdist_rpm

I am trying to create a rpm of a CLI tool I have built. The rpm is being created and is installing … Read more Pkg_resources.distributionnotfound When Using A Module Installed From A Bdist_rpm

How Can I Install Packages Hosted In A Private Pypi Using Setup.py?

I'm trying to write the setup.py install file for a private project, which has both public and … Read more How Can I Install Packages Hosted In A Private Pypi Using Setup.py?

Setup.py Installed Package Can't Be Imported

I created my first package with the following setup.py: from setuptools import setup, find_packages… Read more Setup.py Installed Package Can't Be Imported

How To Use Setuptools Packages And Ext_modules With The Same Name?

I got the following file structure for my Python C Extension project: . ├── setup.py ├── source   … Read more How To Use Setuptools Packages And Ext_modules With The Same Name?

Python Setuptools Package_data - Pip Fails On Subfolders

I am trying to make my own pip package installation to work and I have troubles with subfolders in … Read more Python Setuptools Package_data - Pip Fails On Subfolders

How Can I Include The Parent Folder Structure On A Library Distribution In Python 3.6 Using Setuptools?

I am using setuptools to distribute a Python library. I have the following directory structure: /… Read more How Can I Include The Parent Folder Structure On A Library Distribution In Python 3.6 Using Setuptools?

Python Setuptools: How Do I Specify Dependencies In A Private Pypi Repo, Hosted On Nexus?

I'm unable to build a python wheel which has a dependency on a package in a private PyPI reposi… Read more Python Setuptools: How Do I Specify Dependencies In A Private Pypi Repo, Hosted On Nexus?