joestump / django-ajax

A simple framework for creating AJAX endpoints in Django.
http://github.com/joestump/django-ajax
BSD 3-Clause "New" or "Revised" License
260 stars 53 forks source link

Simple setup.py #3

Closed chrisjones-brack3t closed 13 years ago

chrisjones-brack3t commented 13 years ago

I threw together a quick setup.py to make installing with pip easy. It also pulls down and sets up the necessary decorator module. I'm not sure what license you are using but it looks like BSD so that's what I set in the setup file. I'm not all that familiar with creating a setup file so I went off another app I have installed to make it work.

Example install. pip install -e git+git://github.com/chrisjones-brack3t/django-ajax.git#egg=django-ajax

It successfully installs the two packages and I tested a quick end point I setup in a project I am building.

joestump commented 13 years ago

Thanks a lot for this, Chris. I hadn't gotten around to it yet. I'll bug my buddy to put together a Debian package too.

joestump commented 13 years ago

I also just tagged the current code as 0.1.0 to align with the setup.py.

chrisjones-brack3t commented 13 years ago

Awesome, glad I could contribute.