tomermes
tomermes

Reputation: 23380

Python - Including external libraries in version control

We are a small team trying to work on a python project using eclipse + pydev.
For our version control we use cloudforge SVN and the subclipse plugin.

I am trying to figure out what is the right way to include external libs which are normally installed
locally to the python in Lib/site-packages.

I tried several ways but some of them made some complications.
I am looking for the best-practice method for this matter.

Thanks in advance!

Upvotes: 0

Views: 102

Answers (1)

hd1
hd1

Reputation: 34677

Use svn:externals. Example:

svn propset svn:externals 'akismet http://plugins.svn.wordpress.org/akismet/trunk'
svn commit

Your next update is going to incorporate the external source from http://plugins.svn.wordpress.org/akismet/trunk in the akismet directory. Hope that helps...

Upvotes: 2

Related Questions