Skip to content

Commit

Permalink
Add static files, templates and locales
Browse files Browse the repository at this point in the history
  • Loading branch information
nitmir committed Dec 12, 2015
1 parent 16b700d commit 9fbfe19
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 1 deletion.
3 changes: 3 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,6 @@ include tox.ini
include LICENSE
include README.rst
prune .tox
recursive-include cas_server/static *
recursive-include cas_server/templates *
recursive-include cas_server/locale *
14 changes: 14 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

setup(
name='django-cas-server',
version='0.3.3',
version='0.3.4',
packages=['cas_server', 'cas_server.migrations', 'cas_server.management', 'cas_server.management.commands'],
include_package_data=True,
license='GPLv3',
Expand Down

0 comments on commit 9fbfe19

Please sign in to comment.