In ArcGIS 10.1, Python Add-Ins make various buttons, toolbars, extensions, etc, available to those already familiar with Python and OO in general. I am in the process of developing a Python Add-In and normally I would use eclipse with PyDev to develop scripts or small python applications. However, with the prescribed/predefined Python Add-In workflow (Python Add-In Wizard), I am finding it difficult integrating my eclipse workflow.
The Python Add-In relies on a script that packages the add-in according to a predefined config.xml and folder/file structure, seen below:
Python Add-In\
Images\
yourimages.png
Install\
PythonAddIn_addin.py
config.xml
makeaddin.py
How would you integrate eclipse PyDev without interfering with the python add-in wizard and prescribed development folder structure?