Skip to content

Commit

Permalink
Add MANIFEST.in (seriously ?)
Browse files Browse the repository at this point in the history
  • Loading branch information
paradoxxxzero committed Feb 15, 2012
1 parent 5c82bf2 commit 5c4d15b
Show file tree
Hide file tree
Showing 7 changed files with 34 additions and 5 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
*.svg
.livereload
dist
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
include pygal/css/*.css
24 changes: 24 additions & 0 deletions README
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
Pygal
=====

A python svg graph plotting library


License
-------

Copyright © 2012 Kozea
LGPLv3:

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
1 change: 1 addition & 0 deletions README.md
1 change: 1 addition & 0 deletions pygal/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
#
# You should have received a copy of the GNU Lesser General Public License
# along with pygal. If not, see <http://www.gnu.org/licenses/>.
__version__ = '0.9.2'
from collections import namedtuple

from pygal.graph.bar import Bar
Expand Down
3 changes: 2 additions & 1 deletion relauncher
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#!/bin/zsh
livereload&
reload ./out.py **/*.py&
reload ./demo/simple_test.py **/*.py&
python -m SimpleHTTPServer 1515&
sleep 1
chromium http://localhost:1515/&
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,18 +17,18 @@
#
# You should have received a copy of the GNU Lesser General Public License
# along with pygal. If not, see <http://www.gnu.org/licenses/>.
from setuptools import setup

from setuptools import setup, find_packages
import pygal

setup(
name="pygal",
version='0.9',
version=pygal.__version__,
description="A python svg graph plotting library",
author="Kozea",
author_email="[email protected]",
license="GNU LGPL v3",
platforms="Any",
packages=['pygal'],
packages=find_packages(),
provides=['pygal'],
keywords=["svg", "graph", "diagram", "plot", "histogram", "kiviat"],
tests_require=["pytest", "flask"],
Expand Down

0 comments on commit 5c4d15b

Please sign in to comment.