diff --git a/MANIFEST.in b/MANIFEST.in index 1aba38f..758e7a8 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1 +1,4 @@ include LICENSE +include README.rst +recursive-include admincolors/static * +recursive-include admincolors/templates * diff --git a/Makefile b/Makefile index 2e335c2..4bb99c0 100644 --- a/Makefile +++ b/Makefile @@ -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/* diff --git a/setup.py b/setup.py index dc54e00..79d7342 100644 --- a/setup.py +++ b/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() @@ -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',