Project management/build tools for a Django project?

Viewed 5280

Coming from Java development where build and project management tools abound, I'd like to know what's available for Django. I'd really like to use something like Maven for building things, but is there another preferred way of doing it?

I'm really looking for the following:

  • Command-line building: mvn install is just so easy and cool.
  • Command-line test-runs. I'd like to integrate this app into something like Hudson for continuous integration, since I'm hardcore like that.
  • Deployment of media to local test server (JS, CSS, images, etc.)

Is this currently possible with Maven or another tool? I'm embarking on a pretty big project here and I'd like to have a kicking-rad build/project management system like Maven to help the project be able to grow over time.

2 Answers
Related