Reputation: 77
I am using a lot of third party modules that I have gathered from other areas and am wondering if there is a big difference between including them like I would a module I wrote myself for the package (simple import statement) and using the setup.py to include it in my installation of python?
Edit:
Say I download xlwt for use with python to output to excel files. should I:
import xlwt
OR
import sys sys.path.append('~xlwt/') from xlwt import *
just trying to determine pros and cons of both.
Upvotes: 0
Views: 54
Reputation: 4912
Pros of setup.py way:
These are pros so far I've found.
Upvotes: 1