Skip to content

Commit

Permalink
[master] Fixing templates & static on build
Browse files Browse the repository at this point in the history
  • Loading branch information
victorfsf committed Feb 12, 2018
1 parent d79f2ed commit 1e496f6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
3 changes: 3 additions & 0 deletions MANIFEST.in
@@ -1 +1,4 @@
include LICENSE
include README.rst
recursive-include admincolors/static *
recursive-include admincolors/templates *
2 changes: 1 addition & 1 deletion Makefile
Expand Up @@ -11,7 +11,7 @@ setup: clean requirements test

dist: clean.build
@python setup.py sdist
@python setup.py bdist_wheel --universal
@python setup.py bdist_wheel

upload:
@twine upload dist/*
Expand Down
3 changes: 2 additions & 1 deletion setup.py
@@ -1,7 +1,7 @@
from setuptools import find_packages, setup
import os

version = '0.1.0'
version = '0.1.2'

with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme:
README = readme.read()
Expand All @@ -19,6 +19,7 @@
url='https://github.com/victorfsf/django-admin-colors',
author='Victor Ferraz',
author_email='victorfsf.dev@gmail.com',
zip_safe=False,
keywords=[
'django',
'django-admin',
Expand Down

0 comments on commit 1e496f6

Please sign in to comment.