Top "Setup.py" questions

setup.

Is it possible to include subdirectories using dist utils (setup.py) as part of package data?

Basically my python package is setup like: module \_examples \_folder1 \_file1.py \_file2.py \_folder2 \_file1.py \_file2.py Basically …

python installation distutils setup.py
Difference between entry_points/console_scripts and scripts in setup.py?

There are basically two ways to install Python console scripts to my path by setup.py: setup( ... entry_points = { 'console_…

python package setup.py
When to use pip requirements file versus install_requires in setup.py?

I'm using pip with virtualenv to package and install some Python libraries. I'd imagine what I'm doing is a pretty …

python setuptools pip distribute setup.py
make distutils in Python automatically find packages

When describing a python package in setup.py in distutils in Python, is there a way to make it so …

python distutils setup.py
Difference between extras_require() and install_requires() in setup.py?

I am trying to understand the difference between extras_require() and install_requires() in setup.py but couldn't get it. …

python setuptools setup.py
add data files to python projects setup.py

I have a project like this: ├── CHANGES.txt ├── LICENSE ├── MANIFEST.in ... ├── docs │   └── index.rst ├── negar │   ├── Negar.py │   ├── Virastar.py │   ├── Virastar.…

python setuptools setup.py
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 "PROJECT-egg.info" …

python setuptools distutils distribute setup.py
How can I include package_data without a MANIFEST.in file?

How can I include package_data for sdist without a MANIFEST.in file? My setup.py looks like this: import …

python manifest packaging setuptools setup.py
Build a python package with setup.py in CMake

EDIT: The question is a bit too long. Here is my real question: How can I build and install a …

python build cmake package setup.py
Cygwin - How to install ansible?

How to get / install ansible using Cygwin? I tried the following steps but it's didn't work during bullet 5 (while running "…

cygwin installation ansible setup.py pyyaml