Add static files, templates and locales

This commit is contained in:
Valentin Samir
2015-12-12 14:28:19 +01:00
parent 16b700d012
commit 9fbfe19c55
3 changed files with 18 additions and 1 deletions

14
Makefile Normal file
View File

@ -0,0 +1,14 @@
.PHONY: clean build install dist
build:
python setup.py build
install:
python setup.py install
clean:
find ./ -name '*.pyc' -delete
find ./ -name __pycache__ -delete
rm -rf build django_cas_server.egg-info dist
dist:
python setup.py sdist