From 7575cb2ef089496d32788eee4c8021adf4a14fb7 Mon Sep 17 00:00:00 2001 From: Florian Mounier Date: Thu, 23 Feb 2012 14:40:17 +0100 Subject: [PATCH] Fix install --- MANIFEST.in | 1 + pygal/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index 2afaac3..3099c98 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1 +1,2 @@ include pygal/css/*.css +include pygal/js/*.js diff --git a/pygal/__init__.py b/pygal/__init__.py index 5231b1b..a3d8651 100644 --- a/pygal/__init__.py +++ b/pygal/__init__.py @@ -16,7 +16,7 @@ # # You should have received a copy of the GNU Lesser General Public License # along with pygal. If not, see . -__version__ = '0.9.8' +__version__ = '0.9.9' from collections import namedtuple from pygal.graph.bar import Bar diff --git a/setup.py b/setup.py index 0bf5802..2e51d59 100644 --- a/setup.py +++ b/setup.py @@ -32,7 +32,7 @@ setup( provides=['pygal'], keywords=["svg", "graph", "diagram", "plot", "histogram", "kiviat"], tests_require=["pytest", "flask"], - package_data={'pygal': ['css/*']}, + package_data={'pygal': ['css/*', 'js/*']}, install_requires=['lxml'], classifiers=[ "Development Status :: 4 - Beta",