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

What Is The Purpose Of Setuptools Requirements Of The Form "package===version"

Say I have a package with a console script such as from setuptools import setup setup( name=… Read more What Is The Purpose Of Setuptools Requirements Of The Form "package===version"

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?

Why Do I Need To Include Sub-packages In Setup.py

I have a python package called mltester which contains two sub-packages (actions, dialogs) and a ma… Read more Why Do I Need To Include Sub-packages In Setup.py

Place Pre-compiled Extensions In Root Folder Of Non-pure Python Wheel Package

TL;DR How do you get distutils/setuptools to include a non-pure data file correctly? I've got a… Read more Place Pre-compiled Extensions In Root Folder Of Non-pure Python Wheel Package

Python Alternative Package Setup Using Setuptools

I am having some trouble adding packages with my particular setup: . ├── pkg_a │ ├── pkg_a │ │ … Read more Python Alternative Package Setup Using Setuptools

Why Does "python Setup.py Sdist" Create Unwanted "project-egg.info" In Project Root Directory?

When I run python setup.py sdist it creates an sdist in my ./dist directory. This includes a … Read more Why Does "python Setup.py Sdist" Create Unwanted "project-egg.info" In Project Root Directory?