Skip to content Skip to sidebar Skip to footer
Showing posts with the label Setup.py

Customizing Python Package Directory Layout With Setup.py

Suppose I have the following directory structure: src/ └── python/ └── generated/ ├── _… Read more Customizing Python Package Directory Layout With Setup.py

Create A Python Script That Install Python Modules And Run Some Commands

I want to create a thin wrapper around this library https://github.com/jupyter-incubator/sparkmagic… Read more Create A Python Script That Install Python Modules And Run Some Commands

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

How To Place A Common Code For Different Projects

I've got two python projects in a separate folders. And I also have a common code which I use i… Read more How To Place A Common Code For Different Projects

Pass Command Line Arguments To Nose Via "python Setup.py Test"

Package Settings I have built a Python package which uses nose for testing. Therefore, setup.py con… Read more Pass Command Line Arguments To Nose Via "python Setup.py Test"

Add Folders And Subfolders Outside Of Main Module Using Setuptools(setup.py)

So it is yet another similar looking but different question than setuptools: adding additional file… Read more Add Folders And Subfolders Outside Of Main Module Using Setuptools(setup.py)

What Does The "py Version" In Pypi Project Page Mean? And Does It Matter?

I notice that, most projects released on PyPI contain a 'Py Version' meta data in their pro… Read more What Does The "py Version" In Pypi Project Page Mean? And Does It Matter?

How To Use Setup.py To Install Dependencies Only?

I am not interested in installing my package itself but I am interested installing all the depende… Read more How To Use Setup.py To Install Dependencies Only?