Questions tagged [setuptools]

Setuptools are an array of upgrades to Python's distutils that make the process of creating, sharing, and installing Python packages easier.

Deploying Python applications within a corporate network: A step-by-step guide

To begin, let me provide an overview of the current situation: Within our organization, we have multiple python applications that rely on both custom (not publicly released) and commonly known packages. These dependencies are all currently installed on th ...

Add the necessary static files to the installation directory of a Python egg sdist

Currently, I am working on a Python3 application that relies on a specific set of static files within the project structure. Here is an overview of the project setup: myBlanky \__blankys \__bootstrap |__google_app_engine &b ...

What is the best way to ensure all dependencies of a sub module are included when packaging in Python?

My project structure is as follows: my_pkg __init__.py module1 __init__.py scrip1.py script2.py requirement.txt module2 _script1.py _script2.py requirement.txt setup.py LICENSE README.md I am attempting to include the r ...

What is the method for specifying a dependency on gi.repository in setup.py, as well as the necessary C library?

I need to package a python application that relies on multiple C libraries via gobject introspection. My main concern is ensuring the presence of the gi module from the glib, also known as python-gi in Debian (not to be confused with PyGObject). However, a ...